Fix unordered list interpretation

Fixed a bug which caused MarkdownParser to add dashes to the beginning
of the buffer when it contains a dash which is not used to specify an
item of an unordered list.
This commit is contained in:
luca0N! 2022-03-29 23:55:05 -03:00
parent 0ecdfa1dae
commit 69bf645246
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ std::string make_html(std::filesystem::path const &path) {
break;
case '-':
if (x != 0) {
html += c;
append('-');
break;
}