summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
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 8670642..8154b8f 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -1900,7 +1900,7 @@ static int writeTableBlock(GrowBuf &out,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
- out.addStr("> " + cellText + " </" + cellTag + ">\n");
+ out.addStr("> " + cellText + "\n</" + cellTag + ">\n");
}
cellTag = "td";
cellClass = "class=\"markdownTableBody";