replace quote html code

This commit is contained in:
KitsuneCafe 2024-02-02 06:06:43 -05:00
parent b7960123ad
commit 2940cf162f
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ impl Parse for MarkdownTeraRewriter {
.replace(utf8.as_str(), |captures: &Captures| {
format!("{}", &captures[1])
})
.replace(""", "\"")
.to_string();
dst.write(result.as_bytes())?;
Ok(())