summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-11-06 14:37:45 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-11-06 14:37:45 (GMT)
commit3b95f4936ce8841f88fdaebdfe80da8eb0504cd3 (patch)
tree82bb4be741ac5110ac04c6beec60f6ef2fa31942 /src
parent9440d7ce0b31749b6bbb13e70e2f7ed501505c7e (diff)
downloadDoxygen-3b95f4936ce8841f88fdaebdfe80da8eb0504cd3.zip
Doxygen-3b95f4936ce8841f88fdaebdfe80da8eb0504cd3.tar.gz
Doxygen-3b95f4936ce8841f88fdaebdfe80da8eb0504cd3.tar.bz2
issue_6601 tparam HTML gobbles up lines after the tparam comment
properly terminate block and see to it that a proper horizontal ruler occurs (as if `<hr>` was used).
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;