small comment

This commit is contained in:
Linus E 2022-05-10 19:19:40 +02:00
parent e03087510a
commit c6352c5f75

View File

@ -33,8 +33,8 @@ def make_markdown_proof(text): # used to avoid errors related to markdown parsem
:rtype: string
"""
text = str(text)
text = text.replace("_", "\\_")
text = text.replace("_", "\\_") # replace _ with \_ because \ is used as escape character in markdown, double escape is needed because \ is also a escape character in strings
text = text.replace("*", "\\*")
text = text.replace("`", "\\`")
text = text.replace("[", "\\[")