Skip to content

Commit 1191d0b

Browse files
committed
issue doxygen#11420 Triple underscores in Markdown mode not supported
Support the `_` analogous to `*`
1 parent bc8099c commit 1191d0b

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)