Skip to content

Commit 9e1ff0f

Browse files
committed
issue #8902 markdown: account for quotation marks before emphasis
Fixes rendering of text like: This entire quote should be bold **"outside"** This entire quote should be bold italics ***"outside"*** This entire quote should be italics *"outside"*
1 parent 561fbc0 commit 9e1ff0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/markdown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ enum class ExplicitPageResult
8585
c=='&' || c=='*' || c=='%' || \
8686
c=='[' || c=='(' || c=='.' || \
8787
c=='>' || c==':' || c==',' || \
88-
c==';')
88+
c==';' || c=='\'' || c=='"')
8989

9090
// is character at position i in data allowed before an emphasis section
9191
#define isOpenEmphChar(c) \

0 commit comments

Comments
 (0)