X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/824e85c3e7b40466c2a375e37c7e81a0584c7a79..d738a9b17f4cbb8cee0889d90f1c6858e1ee7826:/syntax/markdown.vim diff --git a/syntax/markdown.vim b/syntax/markdown.vim index e28644a..c21d639 100644 --- a/syntax/markdown.vim +++ b/syntax/markdown.vim @@ -35,12 +35,12 @@ syn case ignore syn sync linebreaks=1 "additions to HTML groups -syn region htmlItalic start="\\\@/ end=/$/ contains=mkdLineBreak,mkdLineContinue,@Spell syn region mkdCode start=/\(\([^\\]\|^\)\\\)\@]*>" end="" syn region mkdCode start="]*>" end="" syn region mkdFootnote start="\[^" end="\]" @@ -88,16 +98,6 @@ syn match mkdRule /^\s*_\s\{0,1}_\s\{0,1}_$/ syn match mkdRule /^\s*-\{3,}$/ syn match mkdRule /^\s*\*\{3,5}$/ -"HTML headings -syn region htmlH1 start="^\s*#" end="$" contains=@Spell -syn region htmlH2 start="^\s*##" end="$" contains=@Spell -syn region htmlH3 start="^\s*###" end="$" contains=@Spell -syn region htmlH4 start="^\s*####" end="$" contains=@Spell -syn region htmlH5 start="^\s*#####" end="$" contains=@Spell -syn region htmlH6 start="^\s*######" end="$" contains=@Spell -syn match htmlH1 /^.\+\n=\+$/ contains=@Spell -syn match htmlH2 /^.\+\n-\+$/ contains=@Spell - " YAML frontmatter if get(g:, 'vim_markdown_frontmatter', 0) syn include @yamlTop syntax/yaml.vim