vim-markdown.txt 26 KB

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