Skip to content

Commit 04f17af

Browse files
committed
Waring with ingroup command at end of alias
When having the simple problem: ``` /** @defgroup dm dep mac */ /** @old{ONIGENC_MBCLEN_CHARFOUND_P} */ int fnmatch_helper() { } ``` with ``` QUIET = YES ALIASES = "old{1}=@InGroup dm" INPUT = pp.c ``` we get the warning like: ``` pp.c:6: warning: Found non-existing group 'br' for the command '@InGroup', ignoring command ``` By first ending the command before adding the `<br>`
1 parent d42f002 commit 04f17af

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
@@ -2687,7 +2687,7 @@ void Markdown::Private::writeOneLineHeaderOrRuler(std::string_view data)
26872687

26882688
if (hasLineBreak(data))
26892689
{
2690-
out+="<br>";
2690+
out+="\\ilinebr<br>";
26912691
}
26922692
if (tmpSize != data.size()) out+='\n';
26932693
}

0 commit comments

Comments
 (0)