summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-09-03 19:19:35 (GMT)
committerGitHub <noreply@github.com>2020-09-03 19:19:35 (GMT)
commite1d10844790b1f8386eada1ea73960b16e6bc440 (patch)
tree8ead969b48e7df60ffbfedffc41a2280b271e34c
parent72591fd5ecc2aef1c6809fb8ce405f2326ec4ae2 (diff)
parentfa32d44f237ca9ebeaf0d4da6545c977c50ca34c (diff)
downloadDoxygen-e1d10844790b1f8386eada1ea73960b16e6bc440.zip
Doxygen-e1d10844790b1f8386eada1ea73960b16e6bc440.tar.gz
Doxygen-e1d10844790b1f8386eada1ea73960b16e6bc440.tar.bz2
Merge pull request #7998 from albert-github/feature/issue_7996
issue #7996 \ref commands broken in markdown tables
-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";