Skip to content

Commit bd31ab7

Browse files
authored
Merge pull request doxygen#11317 from albert-github/feature/issue_11315
issue doxygen#11315 Issue with `@copybrief`, `@ref`, and Markdown links in Markdown table
2 parents 00f9230 + 0ae7864 commit bd31ab7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/markdown.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,10 @@ size_t Markdown::Private::isSpecialCommand(std::string_view data,size_t offset)
551551
// skip over name (and optionally type)
552552
while (offset_<data_.size() && (c=data_[offset_])!='\n' && (allowSpaces || c!=' ') && c!='(')
553553
{
554+
if (offset_+9<data_.size() && data_[offset_]=='\\')
555+
{
556+
if (qstrncmp(&data_[offset_+1],"ilinebr ",8)==0) break;
557+
}
554558
offset_++;
555559
}
556560
if (c=='(') // find the end of the function

0 commit comments

Comments
 (0)