2022-08-16 10:48:45 +02:00
|
|
|
" Override the pandoc-syntax highlighting colors for more subtle citations
|
|
|
|
hi! link pandocPCite Comment
|
|
|
|
hi! link pandocICite Comment
|
|
|
|
hi! link pandocCiteKey Comment
|
|
|
|
hi! link pandocCiteAnchor Comment
|
|
|
|
hi! link pandocCiteLocator Comment
|
|
|
|
|
|
|
|
" Match cloze delimiters e.g. `{{c1::` and `}}`
|
2022-08-20 10:41:20 +02:00
|
|
|
syn match ClozeDelimiter /{{c\d\+::/ conceal containedin=pandocUListItem,pandocListItem
|
2022-08-16 10:48:45 +02:00
|
|
|
syn match ClozeDelimiter /}}/ conceal containedin=pandocUListItem,pandocListItem
|
|
|
|
" Match text between cloze delimiters
|
2022-08-16 15:23:59 +02:00
|
|
|
syn match Cloze /\({{c\d\+::\)\@<=\(\_[A-Za-z0-9$\ \\\-\*,_]*\)\(}}\)\@=/ containedin=pandocUListItem,pandocListItem
|
2022-08-16 10:48:45 +02:00
|
|
|
|
|
|
|
hi! link Cloze Comment
|