Skip to content

Commit e63f735

Browse files
committed
allow quotes in pandocUListItems
re: issue #114
1 parent bb62a8d commit e63f735

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

syntax/pandoc.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ endif
448448
" }}}
449449
" Quotes: {{{2
450450
if &encoding == "utf-8"
451-
call s:WithConceal("quotes", 'syn match pandocBeginQuote /"\</ containedin=pandocEmphasis,pandocStrong,pandocListItem,pandocListItemContinuation display', 'conceal cchar=“')
452-
call s:WithConceal("quotes", 'syn match pandocEndQuote /\(\>[[:punct:]]*\)\@<="[[:blank:][:punct:]\n]\@=/ containedin=pandocEmphasis,pandocStrong,pandocListItem,pandocListItemContinuation display', 'conceal cchar=”')
451+
call s:WithConceal("quotes", 'syn match pandocBeginQuote /"\</ containedin=pandocEmphasis,pandocStrong,pandocListItem,pandocListItemContinuation,pandocUListItem display', 'conceal cchar=“')
452+
call s:WithConceal("quotes", 'syn match pandocEndQuote /\(\>[[:punct:]]*\)\@<="[[:blank:][:punct:]\n]\@=/ containedin=pandocEmphasis,pandocStrong,pandocUListItem,pandocListItem,pandocListItemContinuation display', 'conceal cchar=”')
453453
endif
454454
" Hrule: {{{2
455455
syn match pandocHRule /\*\{3}$/ display

0 commit comments

Comments
 (0)