summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-11-18 10:14:59 (GMT)
committerGitHub <noreply@github.com>2018-11-18 10:14:59 (GMT)
commit1647d7f2e34ac6db04a9dbf69f998d41c66cc92c (patch)
tree03cd9a7e4910c8ffec75cd1745e6b86aa709ec22 /src
parentd90cdff51d664a2259542fceda9e01c446b70980 (diff)
parent3b95f4936ce8841f88fdaebdfe80da8eb0504cd3 (diff)
downloadDoxygen-1647d7f2e34ac6db04a9dbf69f998d41c66cc92c.zip
Doxygen-1647d7f2e34ac6db04a9dbf69f998d41c66cc92c.tar.gz
Doxygen-1647d7f2e34ac6db04a9dbf69f998d41c66cc92c.tar.bz2
Merge pull request #6603 from albert-github/feature/issue_6601
issue_6601 tparam HTML gobbles up lines after the tparam comment
Diffstat (limited to 'src')
-rw-r--r--src/markdown.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 36b9734..a3d8c03 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -1892,7 +1892,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size)
QCString id;
if (isHRuler(data,size))
{
- out.addStr("<hr>\n");
+ out.addStr("\n<hr>\n");
}
else if ((level=isAtxHeader(data,size,header,id)))
{
@@ -2327,7 +2327,7 @@ static QCString processBlocks(const QCString &s,int indent)
}
else
{
- out.addStr("<hr>\n");
+ out.addStr("\n<hr>\n");
}
pi=-1;
i=end;