summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-07-18 11:14:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-07-18 11:14:01 (GMT)
commit537131d27d40e2fa1f3fc55f45449f6604c9a055 (patch)
tree8fa11f431415900454767079c393370959b1bd81 /src/markdown.cpp
parentc545a3d4865e14b645f3c02301c89a1b59ff83e1 (diff)
downloadDoxygen-537131d27d40e2fa1f3fc55f45449f6604c9a055.zip
Doxygen-537131d27d40e2fa1f3fc55f45449f6604c9a055.tar.gz
Doxygen-537131d27d40e2fa1f3fc55f45449f6604c9a055.tar.bz2
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`).
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp2
1 files changed, 1 insertions, 1 deletions
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 + "</" + cellTag + ">");
+ m_out.addStr("> " + cellText + " </" + cellTag + ">");
}
cellTag = "td";
cellClass = "class=\"markdownTableBody";