summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-09-02 10:10:45 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-09-02 10:10:45 (GMT)
commitfa32d44f237ca9ebeaf0d4da6545c977c50ca34c (patch)
tree8ead969b48e7df60ffbfedffc41a2280b271e34c /src/markdown.cpp
parent72591fd5ecc2aef1c6809fb8ce405f2326ec4ae2 (diff)
downloadDoxygen-fa32d44f237ca9ebeaf0d4da6545c977c50ca34c.zip
Doxygen-fa32d44f237ca9ebeaf0d4da6545c977c50ca34c.tar.gz
Doxygen-fa32d44f237ca9ebeaf0d4da6545c977c50ca34c.tar.bz2
issue #7996 \ref commands broken in markdown tables
the `\ilinebr` (internal line break) should be properly be separated from previous text.
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 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 </" + cellTag + ">");
+ m_out.addStr("> " + cellText + " \\ilinebr </" + cellTag + ">");
}
cellTag = "td";
cellClass = "class=\"markdownTableBody";