mirror of
https://github.com/tpope/vim-markdown.git
synced 2025-11-19 23:33:41 -05:00
Add syntax highlighting for shortcut reference links
Shortcut reference links are defined in three of the most common Markdown implementations: - [Pandoc](https://pandoc.org/MANUAL.html#extension-shortcut_reference_links) - [CommonMark](https://spec.commonmark.org/0.29/#shortcut-reference-link) - [Github Flavored Markdown](https://github.github.com/gfm/#shortcut-reference-link)
This commit is contained in:
@@ -81,7 +81,6 @@ syn match markdownRule "- *- *-[ -]*$" contained
|
|||||||
|
|
||||||
syn match markdownLineBreak " \{2,\}$"
|
syn match markdownLineBreak " \{2,\}$"
|
||||||
|
|
||||||
syn region markdownIdDeclaration matchgroup=markdownLinkDelimiter start="^ \{0,3\}!\=\[" end="\]:" oneline keepend nextgroup=markdownUrl skipwhite
|
|
||||||
syn match markdownUrl "\S\+" nextgroup=markdownUrlTitle skipwhite contained
|
syn match markdownUrl "\S\+" nextgroup=markdownUrlTitle skipwhite contained
|
||||||
syn region markdownUrl matchgroup=markdownUrlDelimiter start="<" end=">" oneline keepend nextgroup=markdownUrlTitle skipwhite contained
|
syn region markdownUrl matchgroup=markdownUrlDelimiter start="<" end=">" oneline keepend nextgroup=markdownUrlTitle skipwhite contained
|
||||||
syn region markdownUrlTitle matchgroup=markdownUrlTitleDelimiter start=+"+ end=+"+ keepend contained
|
syn region markdownUrlTitle matchgroup=markdownUrlTitleDelimiter start=+"+ end=+"+ keepend contained
|
||||||
@@ -92,6 +91,8 @@ syn region markdownLinkText matchgroup=markdownLinkTextDelimiter start="!\=\[\%(
|
|||||||
syn region markdownLink matchgroup=markdownLinkDelimiter start="(" end=")" contains=markdownUrl keepend contained
|
syn region markdownLink matchgroup=markdownLinkDelimiter start="(" end=")" contains=markdownUrl keepend contained
|
||||||
syn region markdownId matchgroup=markdownIdDelimiter start="\[" end="\]" keepend contained
|
syn region markdownId matchgroup=markdownIdDelimiter start="\[" end="\]" keepend contained
|
||||||
syn region markdownAutomaticLink matchgroup=markdownUrlDelimiter start="<\%(\w\+:\|[[:alnum:]_+-]\+@\)\@=" end=">" keepend oneline
|
syn region markdownAutomaticLink matchgroup=markdownUrlDelimiter start="<\%(\w\+:\|[[:alnum:]_+-]\+@\)\@=" end=">" keepend oneline
|
||||||
|
syn region markdownShortcutLink matchgroup=markdownLinkTextDelimiter start="!\=\[\%(\_[^][]*]\%( \=[[(]\)\@!\)\@=" end="\]" contains=@markdownInline,markdownLineStart
|
||||||
|
syn region markdownIdDeclaration matchgroup=markdownLinkDelimiter start="^ \{0,3\}!\=\[" end="\]:" oneline keepend nextgroup=markdownUrl skipwhite
|
||||||
|
|
||||||
let s:concealends = ''
|
let s:concealends = ''
|
||||||
if has('conceal') && get(g:, 'markdown_syntax_conceal', 1) == 1
|
if has('conceal') && get(g:, 'markdown_syntax_conceal', 1) == 1
|
||||||
@@ -155,6 +156,7 @@ hi def link markdownLinkText htmlLink
|
|||||||
hi def link markdownIdDeclaration Typedef
|
hi def link markdownIdDeclaration Typedef
|
||||||
hi def link markdownId Type
|
hi def link markdownId Type
|
||||||
hi def link markdownAutomaticLink markdownUrl
|
hi def link markdownAutomaticLink markdownUrl
|
||||||
|
hi def link markdownShortcutLink markdownId
|
||||||
hi def link markdownUrl Float
|
hi def link markdownUrl Float
|
||||||
hi def link markdownUrlTitle String
|
hi def link markdownUrlTitle String
|
||||||
hi def link markdownIdDelimiter markdownLinkDelimiter
|
hi def link markdownIdDelimiter markdownLinkDelimiter
|
||||||
|
|||||||
Reference in New Issue
Block a user