X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/51643fcee7d6863950114eae435e92ca2e654f3b..12ec4c1fbf9b99275e138682b1078f7e15c50258:/syntax/mkd.vim diff --git a/syntax/mkd.vim b/syntax/mkd.vim index 2926194..20b1d3a 100644 --- a/syntax/mkd.vim +++ b/syntax/mkd.vim @@ -36,16 +36,18 @@ syn case ignore syn sync linebreaks=1 "additions to HTML groups -syn region htmlBold start=/\\\@]*>" end="" syn region mkdCode start="]*>" end="" +syn region mkdFootnote start="\[^" end="\]" syn match mkdCode /^\s*\n\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/ syn match mkdListItem "^\s*[-*+]\s\+" syn match mkdListItem "^\s*\d\+\.\s\+" syn match mkdRule /^\s*\*\s\{0,1}\*\s\{0,1}\*$/ syn match mkdRule /^\s*-\s\{0,1}-\s\{0,1}-$/ -syn match mkdRule /^\s+_\s\{0,1}_\s\{0,1}_$/ +syn match mkdRule /^\s*_\s\{0,1}_\s\{0,1}_$/ syn match mkdRule /^\s*-\{3,}$/ syn match mkdRule /^\s*\*\{3,5}$/ @@ -89,6 +92,7 @@ syn match htmlH2 /^.\+\n-\+$/ contains=@Spell "highlighting for Markdown groups HtmlHiLink mkdString String HtmlHiLink mkdCode String +HtmlHiLink mkdFootnote Comment HtmlHiLink mkdBlockquote Comment HtmlHiLink mkdLineContinue Comment HtmlHiLink mkdListItem Identifier