From fa32d44f237ca9ebeaf0d4da6545c977c50ca34c Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 2 Sep 2020 12:10:45 +0200 Subject: issue #7996 \ref commands broken in markdown tables the `\ilinebr` (internal line break) should be properly be separated from previous text. --- src/markdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.cpp b/src/markdown.cpp index 00c0723..3089b8e 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -1986,7 +1986,7 @@ int Markdown::writeTableBlock(const char *data,int size) } // need at least one space on either side of the cell text in // order for doxygen to do other formatting - m_out.addStr("> " + cellText + "\\ilinebr "); + m_out.addStr("> " + cellText + " \\ilinebr "); } cellTag = "td"; cellClass = "class=\"markdownTableBody"; -- cgit v0.12