Merge pull request #177 from WebEngineering2/bot

added more markdown symbols
This commit is contained in:
Linus E
2022-05-12 09:29:27 +02:00
committed by GitHub

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