Skip to content

Commit

Permalink
Disable replacements as html_escape handles
Browse files Browse the repository at this point in the history
  • Loading branch information
LordRalex committed Dec 4, 2024
1 parent b145d71 commit ef6379b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pasta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ impl Pasta {
html_escape::encode_text(
&self
.content
.replace('\\', "\\\\")
.replace('`', "\\`")
.replace('$', "\\$"),
//.replace('\\', "\\\\")
//.replace('`', "\\`")
//.replace('$', "\\$"),
)
.to_string()
}
Expand Down

0 comments on commit ef6379b

Please sign in to comment.