From ed562f3ed5e3208a1351387441028c7831ad14fd Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 15 Aug 2018 14:40:07 +0200 Subject: Markdown list wrong displayed In some, rare, cases a markdown list was wrongly displayed (regression due to change of place of markdown handling) /** @mainpage * * * elem1 * * elem2 * Some text (actually found due to a table) */ --- src/markdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.cpp b/src/markdown.cpp index 0ca95a4..ab145c8 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -1949,7 +1949,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size) out.addStr(data,size); if (hasLineBreak(data,size)) { - out.addStr("
"); + out.addStr("\n"); } } } -- cgit v0.12