Skip to content

Commit

Permalink
Markdown list wrong displayed
Browse files Browse the repository at this point in the history
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)
 */
  • Loading branch information
albert-github committed Aug 15, 2018
1 parent c82abe1 commit ed562f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
}
Expand Down

0 comments on commit ed562f3

Please sign in to comment.