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:
parent
d97ef91db8
commit
b58db4b9e7
|
@ -312,6 +312,8 @@ std::string make_html(std::filesystem::path const &path) {
|
|||
break;
|
||||
} else append(" ");
|
||||
break;
|
||||
case '\\':
|
||||
break;
|
||||
default:
|
||||
append(c);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue