From 537131d27d40e2fa1f3fc55f45449f6604c9a055 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 18 Jul 2020 13:14:01 +0200 Subject: issue #7911 markdown table add extra test to "\copybrief" The comment speaks of: > // need at least one space on either side of the cell text in > // order for doxygen to do other formatting but in the implementation the end space is missing. Looks like the problem is introduced in version 1.8.17 when some work is done on the line counting (removing artificial `\n`). --- src/markdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.cpp b/src/markdown.cpp index 1a96d45..4f40f8d 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -1846,7 +1846,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 + ""); + m_out.addStr("> " + cellText + " "); } cellTag = "td"; cellClass = "class=\"markdownTableBody"; -- cgit v0.12