summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-06 13:55:54 (GMT)
committerGitHub <noreply@github.com>2019-08-06 13:55:54 (GMT)
commit6318b9be2c8ef32c443064d5fedd84fca352432d (patch)
tree993e2ca6aa5f9a6d8cbad18fffb90815967e01ab
parent7f0ea786de3153f535ca20280d6b8660ffefd2e6 (diff)
parent4c8d2f046efc8c3b3e59d2d21f2266dfac18667a (diff)
downloadDoxygen-6318b9be2c8ef32c443064d5fedd84fca352432d.zip
Doxygen-6318b9be2c8ef32c443064d5fedd84fca352432d.tar.gz
Doxygen-6318b9be2c8ef32c443064d5fedd84fca352432d.tar.bz2
Merge pull request #7163 from albert-github/feature/issue_7143
issue #7143 note block not generated properly if there are blanks after it
-rw-r--r--src/markdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 141b736..2cbdcb5 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -1982,7 +1982,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size)
out.addStr(data,size);
if (hasLineBreak(data,size))
{
- out.addStr("<br>");
+ out.addStr("<br>\n");
}
}
}