summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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";