]> git.madduck.net Git - etc/vim.git/blob - doc/vim-markdown.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

1e81ea2e7695d2f60b9e33cd7ca708036a756224
[etc/vim.git] / doc / vim-markdown.txt
1 *vim-markdown*  Vim Markdown
2
3 ===============================================================================
4 Contents ~
5
6  1. Introduction                                    |vim-markdown-introduction|
7  2. Installation                                    |vim-markdown-installation|
8  3. Basic usage                                      |vim-markdown-basic-usage|
9   1. Folding                                             |vim-markdown-folding|
10   2. Concealing                                       |vim-markdown-concealing|
11  4. Options                                              |vim-markdown-options|
12   1. Disable Folding                             |vim-markdown-disable-folding|
13   2. Change fold style                         |vim-markdown-change-fold-style|
14   3. Set header folding level           |vim-markdown-set-header-folding-level|
15   4. Disable Default Key Mappings   |vim-markdown-disable-default-key-mappings|
16   5. Enable TOC window auto-fit       |vim-markdown-enable-toc-window-auto-fit|
17   6. Text emphasis restriction to single-lines
18                        |vim-markdown-text-emphasis-restriction-to-single-lines|
19   7. Syntax Concealing                         |vim-markdown-syntax-concealing|
20   8. Fenced code block languages     |vim-markdown-fenced-code-block-languages|
21   9. Follow named anchors                   |vim-markdown-follow-named-anchors|
22   10. Syntax extensions                        |vim-markdown-syntax-extensions|
23    1. LaTeX math                                      |vim-markdown-latex-math|
24    2. YAML Front Matter                        |vim-markdown-yaml-front-matter|
25    3. TOML Front Matter                        |vim-markdown-toml-front-matter|
26    4. JSON Front Matter                        |vim-markdown-json-front-matter|
27    5. Strikethrough                                |vim-markdown-strikethrough|
28   11. Adjust new list item indent    |vim-markdown-adjust-new-list-item-indent|
29   12. Do not require .md extensions for Markdown links
30                 |vim-markdown-do-not-require-.md-extensions-for-markdown-links|
31   13. Auto-write when following link
32                                   |vim-markdown-auto-write-when-following-link|
33   14. Change default file extension
34                                    |vim-markdown-change-default-file-extension|
35   15. Do not automatically insert bulletpoints
36                         |vim-markdown-do-not-automatically-insert-bulletpoints|
37   16. Change how to open new files  |vim-markdown-change-how-to-open-new-files|
38  5. Mappings                                            |vim-markdown-mappings|
39  6. Commands                                            |vim-markdown-commands|
40  7. Credits                                              |vim-markdown-credits|
41  8. License                                              |vim-markdown-license|
42  9. References                                        |vim-markdown-references|
43
44 ===============================================================================
45                                                     *vim-markdown-introduction*
46 Introduction ~
47
48 Syntax highlighting, matching rules and mappings for the original Markdown [1]
49 and extensions.
50
51 ===============================================================================
52                                                     *vim-markdown-installation*
53 Installation ~
54
55 If you use Vundle [2], add the following line to your '~/.vimrc':
56 >
57   Plugin 'godlygeek/tabular'
58   Plugin 'plasticboy/vim-markdown'
59 <
60 The 'tabular' plugin must come _before_ 'vim-markdown'.
61
62 Then run inside Vim:
63 >
64   :so ~/.vimrc
65   :PluginInstall
66 <
67 If you use Pathogen [3], do this:
68 >
69   cd ~/.vim/bundle
70   git clone https://github.com/plasticboy/vim-markdown.git
71 <
72 To install without Pathogen using the Debian vim-addon-manager [4], do this:
73 >
74   git clone https://github.com/plasticboy/vim-markdown.git
75   cd vim-markdown
76   sudo make install
77   vim-addon-manager install markdown
78 <
79 If you are not using any package manager, download the tarball [5] and do this:
80 >
81   cd ~/.vim
82   tar --strip=1 -zxf vim-markdown-master.tar.gz
83 <
84 ===============================================================================
85                                                      *vim-markdown-basic-usage*
86 Basic usage ~
87
88 -------------------------------------------------------------------------------
89                                                          *vim-markdown-folding*
90 Folding ~
91
92 Folding is enabled for headers by default.
93
94 The following commands are useful to open and close folds:
95
96                                                               *vim-markdown-zr*
97 - 'zr': reduces fold level throughout the buffer
98                                                               *vim-markdown-zR*
99 - 'zR': opens all folds
100                                                               *vim-markdown-zm*
101 - 'zm': increases fold level throughout the buffer
102                                                               *vim-markdown-zM*
103 - 'zM': folds everything all the way
104                                                               *vim-markdown-za*
105 - 'za': open a fold your cursor is on
106                                                               *vim-markdown-zA*
107 - 'zA': open a fold your cursor is on recursively
108                                                               *vim-markdown-zc*
109 - 'zc': close a fold your cursor is on
110                                                               *vim-markdown-zC*
111 - 'zC': close a fold your cursor is on recursively
112
113 Options are available to disable folding or change folding style.
114
115 Try ':help fold-expr' and ':help fold-commands' for details.
116
117 -------------------------------------------------------------------------------
118                                                       *vim-markdown-concealing*
119 Concealing ~
120
121 Concealing is set for some syntax such as bold, italic, code block and link.
122
123 Concealing lets you conceal text with other text. The actual source text is not
124 modified. If you put your cursor on the concealed line, the conceal goes away.
125
126 Options are available to disable or change concealing.
127
128 Try ':help concealcursor' and ':help conceallevel' for details.
129
130 ===============================================================================
131                                                          *vim-markdown-options*
132 Options ~
133
134 -------------------------------------------------------------------------------
135                                                  *vim-markdown-disable-folding*
136 Disable Folding ~
137
138 Add the following line to your '.vimrc' to disable the folding configuration:
139 >
140   let g:vim_markdown_folding_disabled = 1
141 <
142 This option only controls Vim Markdown specific folding configuration.
143
144 To enable/disable folding use Vim's standard folding configuration.
145 >
146   set [no]foldenable
147 <
148 -------------------------------------------------------------------------------
149                                                *vim-markdown-change-fold-style*
150 Change fold style ~
151
152 To fold in a style like python-mode [6], add the following to your '.vimrc':
153 >
154   let g:vim_markdown_folding_style_pythonic = 1
155 <
156 Level 1 heading which is served as a document title is not folded.
157 'g:vim_markdown_folding_level' setting is not active with this fold style.
158
159 To prevent foldtext from being set add the following to your '.vimrc':
160 >
161   let g:vim_markdown_override_foldtext = 0
162 <
163 -------------------------------------------------------------------------------
164                                         *vim-markdown-set-header-folding-level*
165 Set header folding level ~
166
167 Folding level is a number between 1 and 6. By default, if not specified, it is
168 set to 1.
169 >
170   let g:vim_markdown_folding_level = 6
171 <
172 Tip: it can be changed on the fly with:
173 >
174   :let g:vim_markdown_folding_level = 1
175   :edit
176 <
177 -------------------------------------------------------------------------------
178                                     *vim-markdown-disable-default-key-mappings*
179 Disable Default Key Mappings ~
180
181 Add the following line to your '.vimrc' to disable default key mappings:
182 >
183   let g:vim_markdown_no_default_key_mappings = 1
184 <
185 You can also map them by yourself with '<Plug>' mappings.
186
187 -------------------------------------------------------------------------------
188                                       *vim-markdown-enable-toc-window-auto-fit*
189 Enable TOC window auto-fit ~
190
191 Allow for the TOC window to auto-fit when it's possible for it to shrink. It
192 never increases its default size (half screen), it only shrinks.
193 >
194   let g:vim_markdown_toc_autofit = 1
195 <
196 -------------------------------------------------------------------------------
197                        *vim-markdown-text-emphasis-restriction-to-single-lines*
198 Text emphasis restriction to single-lines ~
199
200 By default text emphasis works across multiple lines until a closing token is
201 found. However, it's possible to restrict text emphasis to a single line (i.e.,
202 for it to be applied a closing token must be found on the same line). To do so:
203 >
204   let g:vim_markdown_emphasis_multiline = 0
205 <
206 -------------------------------------------------------------------------------
207                                                *vim-markdown-syntax-concealing*
208 Syntax Concealing ~
209
210 Concealing is set for some syntax.
211
212 For example, conceal '[link text](link url)' as just 'link text'. Also,
213 '_italic_' and '*italic*' will conceal to just _italic_. Similarly '__bold__',
214 '**bold**', '___italic bold___', and '***italic bold***' will conceal to just
215 **bold**, **bold**, **_italic bold_**, and **_italic bold_** respectively.
216
217 To enable conceal use Vim's standard conceal configuration.
218 >
219   set conceallevel=2
220 <
221 To disable conceal regardless of 'conceallevel' setting, add the following to
222 your '.vimrc':
223 >
224   let g:vim_markdown_conceal = 0
225 <
226 To disable math conceal with LaTeX math syntax enabled, add the following to
227 your '.vimrc':
228 >
229   let g:tex_conceal = ""
230   let g:vim_markdown_math = 1
231 <
232 -------------------------------------------------------------------------------
233                                      *vim-markdown-fenced-code-block-languages*
234 Fenced code block languages ~
235
236 You can use filetype name as fenced code block languages for syntax
237 highlighting. If you want to use different name from filetype, you can add it
238 in your '.vimrc' like so:
239 >
240   let g:vim_markdown_fenced_languages = ['csharp=cs']
241 <
242 This will cause the following to be highlighted using the 'cs' filetype syntax.
243 >
244   ```csharp
245   ...
246   ```
247 <
248 Default is "['c++=cpp', 'viml=vim', 'bash=sh', 'ini=dosini']".
249
250 -------------------------------------------------------------------------------
251                                             *vim-markdown-follow-named-anchors*
252 Follow named anchors ~
253
254 This feature allows the 'ge' command to follow named anchors in links of the
255 form 'file#anchor' or just '#anchor', where file may omit the '.md' extension
256 as usual. Two variables control its operation:
257 >
258   let g:vim_markdown_follow_anchor = 1
259 <
260 This tells vim-markdown whether to attempt to follow a named anchor in a link
261 or not. When it is 1, and only if a link can be split in two parts by the
262 pattern '#', then the first part is interpreted as the file and the second one
263 as the named anchor. This also includes urls of the form '#anchor', for which
264 the first part is considered empty, meaning that the target file is the current
265 one. After the file is opened, the anchor will be searched.
266
267 Default is '0'.
268 >
269   let g:vim_markdown_anchorexpr = "'<<'.v:anchor.'>>'"
270 <
271 This expression will be evaluated substituting 'v:anchor' with a quoted string
272 that contains the anchor to visit. The result of the evaluation will become the
273 real anchor to search in the target file. This is useful in order to convert
274 anchors of the form, say, 'my-section-title' to searches of the form 'My
275 Section Title' or '<<my-section-title>>'.
276
277 Default is "''".
278
279 -------------------------------------------------------------------------------
280                                                *vim-markdown-syntax-extensions*
281 Syntax extensions ~
282
283 The following options control which syntax extensions will be turned on. They
284 are off by default.
285
286 -------------------------------------------------------------------------------
287                                                       *vim-markdown-latex-math*
288 LaTeX math ~
289
290 Used as '$x^2$', '$$x^2$$', escapable as '\$x\$' and '\$\$x\$\$'.
291 >
292   let g:vim_markdown_math = 1
293 <
294 -------------------------------------------------------------------------------
295                                                *vim-markdown-yaml-front-matter*
296 YAML Front Matter ~
297
298 Highlight YAML front matter as used by Jekyll or Hugo [7].
299 >
300   let g:vim_markdown_frontmatter = 1
301 <
302 -------------------------------------------------------------------------------
303                                                *vim-markdown-toml-front-matter*
304 TOML Front Matter ~
305
306 Highlight TOML front matter as used by Hugo [7].
307
308 TOML syntax highlight requires vim-toml [8].
309 >
310   let g:vim_markdown_toml_frontmatter = 1
311 <
312 -------------------------------------------------------------------------------
313                                                *vim-markdown-json-front-matter*
314 JSON Front Matter ~
315
316 Highlight JSON front matter as used by Hugo [7].
317
318 JSON syntax highlight requires vim-json [9].
319 >
320   let g:vim_markdown_json_frontmatter = 1
321 <
322 -------------------------------------------------------------------------------
323                                                    *vim-markdown-strikethrough*
324 Strikethrough ~
325
326 Strikethrough uses two tildes. '~~Scratch this.~~'
327 >
328   let g:vim_markdown_strikethrough = 1
329 <
330 -------------------------------------------------------------------------------
331                                      *vim-markdown-adjust-new-list-item-indent*
332 Adjust new list item indent ~
333
334 You can adjust a new list indent. For example, you insert a single line like
335 below:
336 >
337   * item1
338 <
339 Then if you type 'o' to insert new line in vim and type '* item2', the result
340 will be:
341 >
342   * item1
343       * item2
344 <
345 vim-markdown automatically insert the indent. By default, the number of spaces
346 of indent is 4. If you'd like to change the number as 2, just write:
347 >
348   let g:vim_markdown_new_list_item_indent = 2
349 <
350 -------------------------------------------------------------------------------
351                 *vim-markdown-do-not-require-.md-extensions-for-markdown-links*
352 Do not require .md extensions for Markdown links ~
353
354 If you want to have a link like this '[link text](link-url)' and follow it for
355 editing in vim using the 'ge' command, but have it open the file "link-url.md"
356 instead of the file "link-url", then use this option:
357 >
358   let g:vim_markdown_no_extensions_in_markdown = 1
359 <
360 This is super useful for GitLab and GitHub wiki repositories.
361
362 Normal behaviour would be that vim-markup required you to do this '[link text
363 ](link-url.md)', but this is not how the Gitlab and GitHub wiki repositories
364 work. So this option adds some consistency between the two.
365
366 -------------------------------------------------------------------------------
367                                   *vim-markdown-auto-write-when-following-link*
368 Auto-write when following link ~
369
370 If you follow a link like this '[link text](link-url)' using the 'ge' shortcut,
371 this option will automatically save any edits you made before moving you:
372 >
373   let g:vim_markdown_autowrite = 1
374 <
375 -------------------------------------------------------------------------------
376                                    *vim-markdown-change-default-file-extension*
377 Change default file extension ~
378
379 If you would like to use a file extension other than '.md' you may do so using
380 the 'vim_markdown_auto_extension_ext' variable:
381 >
382   let g:vim_markdown_auto_extension_ext = 'txt'
383 <
384 -------------------------------------------------------------------------------
385                         *vim-markdown-do-not-automatically-insert-bulletpoints*
386 Do not automatically insert bulletpoints ~
387
388 Automatically inserting bulletpoints can lead to problems when wrapping text
389 (see issue #232 for details), so it can be disabled:
390 >
391   let g:vim_markdown_auto_insert_bullets = 0
392 <
393 In that case, you probably also want to set the new list item indent to 0 as
394 well, or you will have to remove an indent each time you add a new list item:
395 >
396   let g:vim_markdown_new_list_item_indent = 0
397 <
398 -------------------------------------------------------------------------------
399                                     *vim-markdown-change-how-to-open-new-files*
400 Change how to open new files ~
401
402 By default when following a link the target file will be opened in your current
403 buffer. This behavior can change if you prefer using splits or tabs by using
404 the 'vim_markdown_edit_url_in' variable. Possible values are 'tab', 'vsplit',
405 'hsplit', 'current' opening in a new tab, vertical split, horizontal split, and
406 current buffer respectively. Defaults to current buffer if not set:
407 >
408   let g:vim_markdown_edit_url_in = 'tab'
409 <
410 ===============================================================================
411                                                         *vim-markdown-mappings*
412 Mappings ~
413
414 The following work on normal and visual modes:
415
416                                                               *vim-markdown-gx*
417 - 'gx': open the link under the cursor in the same browser as the standard
418   'gx' command. '<Plug>Markdown_OpenUrlUnderCursor'
419
420   The standard 'gx' is extended by allowing you to put your cursor anywhere
421   inside a link.
422
423   For example, all the following cursor positions will work:
424 >
425   [Example](http://example.com)
426   ^  ^    ^^   ^       ^
427   1  2    34   5       6
428
429   <http://example.com>
430   ^  ^               ^
431   1  2               3
432 <
433   Known limitation: does not work for links that span multiple lines.
434
435                                                               *vim-markdown-ge*
436 - 'ge': open the link under the cursor in Vim for editing. Useful for
437   relative markdown links. '<Plug>Markdown_EditUrlUnderCursor'
438
439   The rules for the cursor position are the same as the 'gx' command.
440
441                                                               *vim-markdown-]]*
442 - ']]': go to next header. '<Plug>Markdown_MoveToNextHeader'
443
444                                                               *vim-markdown-[[*
445 - '[[': go to previous header. Contrast with ']c'.
446   '<Plug>Markdown_MoveToPreviousHeader'
447
448                                                               *vim-markdown-][*
449 - '][': go to next sibling header if any.
450   '<Plug>Markdown_MoveToNextSiblingHeader'
451
452                                                               *vim-markdown-[]*
453 - '[]': go to previous sibling header if any.
454   '<Plug>Markdown_MoveToPreviousSiblingHeader'
455
456                                                               *vim-markdown-]c*
457 - ']c': go to Current header. '<Plug>Markdown_MoveToCurHeader'
458
459                                                               *vim-markdown-]u*
460 - ']u': go to parent header (Up). '<Plug>Markdown_MoveToParentHeader'
461
462 This plugin follows the recommended Vim plugin mapping interface, so to change
463 the map ']u' to 'asdf', add to your '.vimrc':
464 >
465   map asdf <Plug>Markdown_MoveToParentHeader
466 <
467 To disable a map use:
468 >
469   map <Plug> <Plug>Markdown_MoveToParentHeader
470 <
471 ===============================================================================
472                                                         *vim-markdown-commands*
473 Commands ~
474
475 The following requires ':filetype plugin on'.
476
477                                                               *:HeaderDecrease*
478 - ':HeaderDecrease':
479
480   Decrease level of all headers in buffer: 'h2' to 'h1', 'h3' to 'h2', etc.
481
482   If range is given, only operate in the range.
483
484   If an 'h1' would be decreased, abort.
485
486   For simplicity of implementation, Setex headers are converted to Atx.
487
488                                                               *:HeaderIncrease*
489 - ':HeaderIncrease': Analogous to ':HeaderDecrease', but increase levels
490   instead.
491
492                                                                   *:SetexToAtx*
493 - ':SetexToAtx':
494
495   Convert all Setex style headers in buffer to Atx.
496
497   If a range is given, e.g. hit ':' from visual mode, only operate on the
498   range.
499
500                                                                  *:TableFormat*
501 - ':TableFormat': Format the table under the cursor like this [10].
502
503   Requires Tabular [11].
504
505   The input table _must_ already have a separator line as the second line of
506   the table. That line only needs to contain the correct pipes '|', nothing
507   else is required.
508
509                                                                          *:Toc*
510 - ':Toc': create a quickfix vertical window navigable table of contents with
511   the headers.
512
513   Hit '<Enter>' on a line to jump to the corresponding line of the markdown
514   file.
515
516                                                                         *:Toch*
517 - ':Toch': Same as ':Toc' but in an horizontal window.
518
519                                                                         *:Toct*
520 - ':Toct': Same as ':Toc' but in a new tab.
521
522                                                                         *:Tocv*
523 - ':Tocv': Same as ':Toc' for symmetry with ':Toch' and ':Tocv'.
524
525 ===============================================================================
526                                                          *vim-markdown-credits*
527 Credits ~
528
529 The main contributors of vim-markdown are:
530
531 - **Ben Williams** (A.K.A. **plasticboy**). The original developer of vim-
532   markdown. Homepage [12].
533
534 If you feel that your name should be on this list, please make a pull request
535 listing your contributions.
536
537 ===============================================================================
538                                                          *vim-markdown-license*
539 License ~
540
541 The MIT License (MIT)
542
543 Copyright (c) 2012 Benjamin D. Williams
544
545 Permission is hereby granted, free of charge, to any person obtaining a copy of
546 this software and associated documentation files (the "Software"), to deal in
547 the Software without restriction, including without limitation the rights to
548 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
549 of the Software, and to permit persons to whom the Software is furnished to do
550 so, subject to the following conditions:
551
552 The above copyright notice and this permission notice shall be included in all
553 copies or substantial portions of the Software.
554
555 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
556 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
557 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
558 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
559 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
560 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
561 SOFTWARE.
562
563 ===============================================================================
564                                                       *vim-markdown-references*
565 References ~
566
567 [1] http://daringfireball.net/projects/markdown/
568 [2] https://github.com/gmarik/vundle
569 [3] https://github.com/tpope/vim-pathogen
570 [4] http://packages.qa.debian.org/v/vim-addon-manager.html
571 [5] https://github.com/plasticboy/vim-markdown/archive/master.tar.gz
572 [6] https://github.com/klen/python-mode
573 [7] https://gohugo.io/content/front-matter/
574 [8] https://github.com/cespare/vim-toml
575 [9] https://github.com/elzr/vim-json
576 [10] http://www.cirosantilli.com/markdown-style-guide/#tables
577 [11] https://github.com/godlygeek/tabular
578 [12] http://plasticboy.com/
579
580 vim: ft=help