summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-07-30 13:21:53 (GMT)
committerGitHub <noreply@github.com>2019-07-30 13:21:53 (GMT)
commit5de2a8e8a14fba457d5eada49d9f7321271cb041 (patch)
tree6d826c2cf3e6dd10fec50b93cd89f4bd45d10429
parent6d9c887c931493509f258279efab63b39b7f2e29 (diff)
parent28b624bfec2adbed9fb43a2edd54b2fcaeb5d2aa (diff)
downloadDoxygen-5de2a8e8a14fba457d5eada49d9f7321271cb041.zip
Doxygen-5de2a8e8a14fba457d5eada49d9f7321271cb041.tar.gz
Doxygen-5de2a8e8a14fba457d5eada49d9f7321271cb041.tar.bz2
Merge pull request #7114 from albert-github/feature/issue_7113
issue #7113 Doxygen doesn't process markdown tables correctly
-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";