1
- *render-markdown.txt* For 0.10.0 Last change: 2024 June 05
1
+ *render-markdown.txt* For 0.10.0 Last change: 2024 June 08
2
2
3
3
==============================================================================
4
4
Table of Contents *render-markdown-table-of-contents*
5
5
6
6
1. markdown.nvim | render-markdown-markdown.nvim |
7
7
2. Features | render-markdown-features |
8
- 3. Dependencies | render-markdown-dependencies |
9
- 4. Install | render-markdown-install |
8
+ 3. Known Limitations | render-markdown-known-limitations |
9
+ 4. Dependencies | render-markdown-dependencies |
10
+ 5. Install | render-markdown-install |
10
11
- lazy.nvim | render-markdown-install-lazy.nvim |
11
12
- packer.nvim | render-markdown-install-packer.nvim |
12
- 5 . Setup | render-markdown-setup |
13
- 6 . Commands | render-markdown-commands |
14
- 7 . Custom Handlers | render-markdown-custom-handlers |
13
+ 6 . Setup | render-markdown-setup |
14
+ 7 . Commands | render-markdown-commands |
15
+ 8 . Custom Handlers | render-markdown-custom-handlers |
15
16
- More Complex Example| render-markdown-custom-handlers-more-complex-example |
16
- 8 . Purpose | render-markdown-purpose |
17
- 9 . Markdown Ecosystem | render-markdown-markdown-ecosystem |
17
+ 9 . Purpose | render-markdown-purpose |
18
+ 10 . Markdown Ecosystem | render-markdown-markdown-ecosystem |
18
19
- Render in Neovim | render-markdown-markdown-ecosystem-render-in-neovim |
19
20
- Render in Browser | render-markdown-markdown-ecosystem-render-in-browser |
20
21
- Orthogonal | render-markdown-markdown-ecosystem-orthogonal |
@@ -53,7 +54,14 @@ Plugin to improve viewing Markdown files in Neovim
53
54
54
55
55
56
==============================================================================
56
- 3. Dependencies *render-markdown-dependencies*
57
+ 3. Known Limitations *render-markdown-known-limitations*
58
+
59
+ - Text that extends beyond available space will overwrite content #35 <https://github.com/MeanderingProgrammer/markdown.nvim/issues/35 >
60
+ - `LaTeX` formula evaluations are placed above rather than overlayed #6 <https://github.com/MeanderingProgrammer/markdown.nvim/issues/6 >
61
+
62
+
63
+ ==============================================================================
64
+ 4. Dependencies *render-markdown-dependencies*
57
65
58
66
- treesitter <https://github.com/nvim-treesitter/nvim-treesitter > parsers:
59
67
- markdown & markdown_inline <https://github.com/tree-sitter-grammars/tree-sitter-markdown >:
@@ -66,7 +74,7 @@ Plugin to improve viewing Markdown files in Neovim
66
74
67
75
68
76
==============================================================================
69
- 4 . Install *render-markdown-install*
77
+ 5 . Install *render-markdown-install*
70
78
71
79
72
80
LAZY.NVIM *render-markdown-install-lazy.nvim*
@@ -98,7 +106,7 @@ PACKER.NVIM *render-markdown-install-packer.nvim*
98
106
99
107
100
108
==============================================================================
101
- 5 . Setup *render-markdown-setup*
109
+ 6 . Setup *render-markdown-setup*
102
110
103
111
Below is the configuration that gets used by default, any part of it can be
104
112
modified by the user.
@@ -258,15 +266,15 @@ modified by the user.
258
266
259
267
260
268
==============================================================================
261
- 6 . Commands *render-markdown-commands*
269
+ 7 . Commands *render-markdown-commands*
262
270
263
271
`:RenderMarkdownToggle` - Switch between enabling & disabling this plugin
264
272
265
273
- Function can also be accessed directly through `require (' render-markdown' ).toggle ()`
266
274
267
275
268
276
==============================================================================
269
- 7 . Custom Handlers *render-markdown-custom-handlers*
277
+ 8 . Custom Handlers *render-markdown-custom-handlers*
270
278
271
279
Custom handlers allow users to integrate custom rendering for either
272
280
unsupported languages or to override the native implementations. This can also
@@ -336,7 +344,7 @@ Lets say for `python` we want to highlight lines with function definitions.
336
344
337
345
338
346
==============================================================================
339
- 8 . Purpose *render-markdown-purpose*
347
+ 9 . Purpose *render-markdown-purpose*
340
348
341
349
There are many existing markdown rendering plugins in the Neovim ecosystem.
342
350
However, most of these rely on syncing a separate browser window with the
@@ -353,7 +361,7 @@ this plugin.
353
361
354
362
355
363
==============================================================================
356
- 9 . Markdown Ecosystem *render-markdown-markdown-ecosystem*
364
+ 10 . Markdown Ecosystem *render-markdown-markdown-ecosystem*
357
365
358
366
There are many `markdown` plugins that specialize in different aspects of
359
367
interacting with `markdown` files. This plugin specializes in rendering the
0 commit comments