X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/07f5c794b9885bf53dd5c9c9c6b72a5bb135ec67..1d04101ca7e3de1b622f356e33cfbaeb5e358bc9:/syntax/markdown.vim diff --git a/syntax/markdown.vim b/syntax/markdown.vim index 92c6c56..67043a1 100644 --- a/syntax/markdown.vim +++ b/syntax/markdown.vim @@ -42,12 +42,12 @@ if has('conceal') endif "additions to HTML groups -syn region htmlItalic start="\\\@]*>" end="" syn region mkdCode start="]*>" end="" syn region mkdFootnote start="\[^" end="\]" syn match mkdCode /^\s*\n\(\(\s\{8,}[^ ]\|\t\t\+[^\t]\).*\n\)\+/ +syn match mkdCode /\%^\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/ syn match mkdCode /^\s*\n\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/ contained syn region mkdListItemLine matchgroup=mkdListItem start="^\s*\%([-*+]\|\d\+\.\)\s\+" end="$" contains=@mkdNonListItem,@Spell syn region mkdNonListItemBlock start="\(\%^\(\s*\([-*+]\|\d\+\.\)\s\+\)\@!\|\n\(\_^\_$\|\s\{4,}[^ ]\|\t+[^\t]\)\@!\)" end="^\(\s*\([-*+]\|\d\+\.\)\s\+\)\@=" contains=@mkdNonListItem,@Spell