added more markdown symbols

This commit is contained in:
Linus E 2022-05-12 09:28:37 +02:00
parent 12994e43c3
commit d715734353

View File

@ -57,6 +57,8 @@ def make_markdown_proof(text): # used to avoid errors related to markdown parse
text = text.replace("^", "\\^")
text = text.replace("$", "\\$")
text = text.replace("%", "\\%")
text = text.replace("=", "\\=")
text = text.replace("@", "\\@")
return text