Skip to content

Commit 52748bf

Browse files
committed
issue #6473 Plantuml parse error
Small corrections: - wrong line was deleted - side effect with single backtick corrected
1 parent 7f5f364 commit 52748bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/commands.dox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3874,8 +3874,8 @@ class Receiver
38743874
\ref cmdendhtmlonly "\\endhtmlonly" is inserted as-is. When you
38753875
want to insert a HTML fragment that has block scope like a table or list
38763876
which should appear outside \<p\>..\</p\>, this can lead to invalid HTML.
3877-
You can use `\htmlonly[block]` to make Doxygen
3878-
end the current paragraph and restart it after \\endhtmlonly.
3877+
You can use <tt>\\htmlonly[block]</tt> to make Doxygen
3878+
end the current paragraph and restart it after <tt>\\endhtmlonly</tt>.
38793879

38803880
\note environment variables (like \$(HOME) ) are resolved inside a
38813881
HTML-only block.

src/scanner.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7076,8 +7076,8 @@ NONLopt [^\n]*
70767076
<DocBlock>^({B}*"*"+)?{B}{0,3}"```"[`]*/"{"[^}]+"}" |
70777077
<DocBlock>^({B}*"*"+)?{B}{0,3}"```"[`]* {
70787078
QCString pat = substitute(yytext,"*"," ");
7079-
yyextra->docBlock << "\\iskip";
70807079
if (Config_getBool(MARKDOWN_SUPPORT)) yyextra->docBlock << "\\iskip";
7080+
yyextra->docBlock << yytext;
70817081
yyextra->docBlockName="```";
70827082
yyextra->fencedSize=pat.stripWhiteSpace().length();
70837083
yyextra->nestedComment=0;

0 commit comments

Comments
 (0)