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
commit 9ecb55cabf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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