1
0
Fork 0

Escape '=' to produce valid markdown

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2021-03-25 10:41:10 +01:00
parent 7f5bd0a1cf
commit b66aa8b158
No known key found for this signature in database
GPG key ID: FF42D23B580C89F7

View file

@ -18,7 +18,7 @@ class TelegramNotifier:
@staticmethod
def _markdown_escape(text):
text = str(text)
for special_char in ['\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '#', '+', '-', '.', '!']:
for special_char in ['\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '#', '+', '-', '.', '!', '=']:
text = text.replace(special_char, fr'\{special_char}')
return text