diff options
author | albert-github <albert.tests@gmail.com> | 2019-08-05 15:46:07 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-08-05 15:46:07 (GMT) |
commit | 4c8d2f046efc8c3b3e59d2d21f2266dfac18667a (patch) | |
tree | 993e2ca6aa5f9a6d8cbad18fffb90815967e01ab /src/markdown.cpp | |
parent | 7f0ea786de3153f535ca20280d6b8660ffefd2e6 (diff) | |
download | Doxygen-4c8d2f046efc8c3b3e59d2d21f2266dfac18667a.zip Doxygen-4c8d2f046efc8c3b3e59d2d21f2266dfac18667a.tar.gz Doxygen-4c8d2f046efc8c3b3e59d2d21f2266dfac18667a.tar.bz2 |
issue #7143 note block not generated properly if there are blanks after it
In case minimal 2 spaces at the end of a line a line break is inserted, but the line was not terminatd so it was concatinated with the next line.
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r-- | src/markdown.cpp | 2 |
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"); } } } |