summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-07-18 12:42:19 (GMT)
committerGitHub <noreply@github.com>2020-07-18 12:42:19 (GMT)
commit77c3cf1450b7780c2382d18036153d37d33877b8 (patch)
treee9360e9aa06c50f61d8263148ced72b5eaf9fe29
parent492b0ebab01e1f412d3966cef42cea4b1a0edbc8 (diff)
parent537131d27d40e2fa1f3fc55f45449f6604c9a055 (diff)
downloadDoxygen-77c3cf1450b7780c2382d18036153d37d33877b8.zip
Doxygen-77c3cf1450b7780c2382d18036153d37d33877b8.tar.gz
Doxygen-77c3cf1450b7780c2382d18036153d37d33877b8.tar.bz2
Merge pull request #7912 from albert-github/fesature/issue_7911
issue #7911 markdown table add extra test to "\copybrief"
-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";