Skip to content

Commit 9d722c2

Browse files
authored
Merge pull request doxygen#11437 from albert-github/feature/issue_11420
issue doxygen#11420 Triple underscores in Markdown mode not supported
2 parents d8e0963 + 1191d0b commit 9d722c2

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
@@ -84,7 +84,7 @@ enum class ExplicitPageResult
8484
#define extraChar(c) \
8585
(c=='-' || c=='+' || c=='!' || \
8686
c=='?' || c=='$' || c=='@' || \
87-
c=='&' || c=='*' || c=='%' || \
87+
c=='&' || c=='*' || c=='_' || c=='%' || \
8888
c=='[' || c=='(' || c=='.' || \
8989
c=='>' || c==':' || c==',' || \
9090
c==';' || c=='\'' || c=='"' || c=='`')

0 commit comments

Comments
 (0)