summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-15 12:40:07 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-15 12:40:07 (GMT)
commited562f3ed5e3208a1351387441028c7831ad14fd (patch)
tree22e070a66f8d8bdea57ae7a0a77248282196c0b8 /src/markdown.cpp
parentc82abe1f23ec55aa1d05f118c2bae3aac3b68296 (diff)
downloadDoxygen-ed562f3ed5e3208a1351387441028c7831ad14fd.zip
Doxygen-ed562f3ed5e3208a1351387441028c7831ad14fd.tar.gz
Doxygen-ed562f3ed5e3208a1351387441028c7831ad14fd.tar.bz2
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) */
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp2
1 files changed, 1 insertions, 1 deletions
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("<br>");
+ out.addStr("\n");
}
}
}