Fix character escape bug

Fixed a bug which caused MarkdownParser to print the leading backslash
when escaping special Markdown characters.
This commit is contained in:
luca0N! 2022-05-24 20:02:41 -03:00
parent d97ef91db8
commit b58db4b9e7
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
1 changed files with 2 additions and 0 deletions

View File

@ -312,6 +312,8 @@ std::string make_html(std::filesystem::path const &path) {
break;
} else append(" ");
break;
case '\\':
break;
default:
append(c);
break;