added more markdown symbols #177

Merged
Rripped merged 1 commits from bot into main 2022-05-12 07:29:27 +00:00

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("%", "\\%") text = text.replace("%", "\\%")
text = text.replace("=", "\\=")
text = text.replace("@", "\\@")
return text return text