|
1 | | -*render-markdown.txt* For 0.9.5 Last change: 2024 April 01 |
| 1 | +*render-markdown.txt* For 0.9.5 Last change: 2024 April 11 |
2 | 2 |
|
3 | 3 | ============================================================================== |
4 | 4 | Table of Contents *render-markdown-table-of-contents* |
@@ -31,6 +31,7 @@ Plugin to improve viewing Markdown files in Neovim |
31 | 31 | - Changes `conceallevel` between `rendered` and `raw` view based on configuration |
32 | 32 | - Supports rendering `markdown` injected into other file types |
33 | 33 | - Highlights headings with different groups depending on level and replaces `#` |
| 34 | +- Updates horizontal breaks with full-width lines |
34 | 35 | - Highlights code blocks and inline code to better stand out |
35 | 36 | - Replaces bullet points with provided character based on level |
36 | 37 | - Replaces block quote leading `>` with provided character |
@@ -85,6 +86,8 @@ modified by the user. |
85 | 86 | (atx_h6_marker) |
86 | 87 | ] @heading) |
87 | 88 |
|
| 89 | + (thematic_break) @dash |
| 90 | + |
88 | 91 | (fenced_code_block) @code |
89 | 92 |
|
90 | 93 | [ |
@@ -112,6 +115,8 @@ modified by the user. |
112 | 115 | render_modes = { 'n', 'c' }, |
113 | 116 | -- Characters that will replace the # at the start of headings |
114 | 117 | headings = { ' ', ' ', ' ', ' ', ' ', ' ' }, |
| 118 | + -- Character to use for the horizontal break |
| 119 | + dash = '—', |
115 | 120 | -- Character to use for the bullet points in lists |
116 | 121 | bullets = { '●', '○', '◆', '◇' }, |
117 | 122 | -- Character that will replace the > at the start of block quotes |
@@ -140,6 +145,8 @@ modified by the user. |
140 | 145 | 'markdownH6', |
141 | 146 | }, |
142 | 147 | }, |
| 148 | + -- Horizontal break |
| 149 | + dash = 'LineNr', |
143 | 150 | -- Code blocks |
144 | 151 | code = 'ColorColumn', |
145 | 152 | -- Bullet points in list |
|
0 commit comments