2. YAML Front Matter |vim-markdown-yaml-front-matter|
3. TOML Front Matter |vim-markdown-toml-front-matter|
4. JSON Front Matter |vim-markdown-json-front-matter|
+ 5. Strikethrough |vim-markdown-strikethrough|
11. Adjust new list item indent |vim-markdown-adjust-new-list-item-indent|
12. Do not require .md extensions for Markdown links
|vim-markdown-do-not-require-.md-extensions-for-markdown-links|
-------------------------------------------------------------------------------
*vim-markdown-disable-folding*
+ *g:vim_markdown_folding_disabled*
Disable Folding ~
Add the following line to your '.vimrc' to disable the folding configuration:
<
-------------------------------------------------------------------------------
*vim-markdown-change-fold-style*
+ *g:vim_markdown_folding_style_pythonic*
+ *g:vim_markdown_override_foldtext*
Change fold style ~
To fold in a style like python-mode [6], add the following to your '.vimrc':
<
-------------------------------------------------------------------------------
*vim-markdown-set-header-folding-level*
+ *g:vim_markdown_folding_level*
Set header folding level ~
Folding level is a number between 1 and 6. By default, if not specified, it is
<
-------------------------------------------------------------------------------
*vim-markdown-disable-default-key-mappings*
+ *g:vim_markdown_no_default_key_mappings*
Disable Default Key Mappings ~
Add the following line to your '.vimrc' to disable default key mappings:
-------------------------------------------------------------------------------
*vim-markdown-enable-toc-window-auto-fit*
+ *g:vim_markdown_toc_autofit*
Enable TOC window auto-fit ~
Allow for the TOC window to auto-fit when it's possible for it to shrink. It
<
-------------------------------------------------------------------------------
*vim-markdown-text-emphasis-restriction-to-single-lines*
+ *g:vim_markdown_emphasis_multiline*
Text emphasis restriction to single-lines ~
By default text emphasis works across multiple lines until a closing token is
<
-------------------------------------------------------------------------------
*vim-markdown-syntax-concealing*
+ *g:vim_markdown_conceal*
Syntax Concealing ~
Concealing is set for some syntax.
<
-------------------------------------------------------------------------------
*vim-markdown-fenced-code-block-languages*
+ *g:vim_markdown_fenced_languages*
Fenced code block languages ~
You can use filetype name as fenced code block languages for syntax
-------------------------------------------------------------------------------
*vim-markdown-follow-named-anchors*
+ *g:vim_markdown_follow_anchor*
+ *g:vim_markdown_anchorexpr*
Follow named anchors ~
This feature allows the 'ge' command to follow named anchors in links of the
-------------------------------------------------------------------------------
*vim-markdown-latex-math*
+ *g:vim_markdown_math*
LaTeX math ~
Used as '$x^2$', '$$x^2$$', escapable as '\$x\$' and '\$\$x\$\$'.
<
-------------------------------------------------------------------------------
*vim-markdown-yaml-front-matter*
+ *g:vim_markdown_frontmatter*
YAML Front Matter ~
Highlight YAML front matter as used by Jekyll or Hugo [7].
<
-------------------------------------------------------------------------------
*vim-markdown-toml-front-matter*
+ *g:vim_markdown_toml_frontmatter*
TOML Front Matter ~
Highlight TOML front matter as used by Hugo [7].
<
-------------------------------------------------------------------------------
*vim-markdown-json-front-matter*
+ *g:vim_markdown_json_frontmatter*
JSON Front Matter ~
Highlight JSON front matter as used by Hugo [7].
>
let g:vim_markdown_json_frontmatter = 1
<
+-------------------------------------------------------------------------------
+ *vim-markdown-strikethrough*
+ *g:vim_markdown_strikethrough*
+Strikethrough ~
+
+Strikethrough uses two tildes. '~~Scratch this.~~'
+>
+ let g:vim_markdown_strikethrough = 1
+<
-------------------------------------------------------------------------------
*vim-markdown-adjust-new-list-item-indent*
+ *g:vim_markdown_new_list_item_indent*
Adjust new list item indent ~
You can adjust a new list indent. For example, you insert a single line like
<
-------------------------------------------------------------------------------
*vim-markdown-do-not-require-.md-extensions-for-markdown-links*
+ *g:vim_markdown_no_extensions_in_markdown*
Do not require .md extensions for Markdown links ~
If you want to have a link like this '[link text](link-url)' and follow it for
-------------------------------------------------------------------------------
*vim-markdown-auto-write-when-following-link*
+ *g:vim_markdown_autowrite*
Auto-write when following link ~
If you follow a link like this '[link text](link-url)' using the 'ge' shortcut,
<
-------------------------------------------------------------------------------
*vim-markdown-change-default-file-extension*
+ *g:vim_markdown_auto_extension_ext*
Change default file extension ~
If you would like to use a file extension other than '.md' you may do so using
<
-------------------------------------------------------------------------------
*vim-markdown-do-not-automatically-insert-bulletpoints*
+ *g:vim_markdown_auto_insert_bullets*
Do not automatically insert bulletpoints ~
Automatically inserting bulletpoints can lead to problems when wrapping text
<
-------------------------------------------------------------------------------
*vim-markdown-change-how-to-open-new-files*
+ *g:vim_markdown_edit_url_in*
Change how to open new files ~
By default when following a link the target file will be opened in your current