Escape '=' to produce valid markdown
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
7f5bd0a1cf
commit
b66aa8b158
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class TelegramNotifier:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _markdown_escape(text):
|
def _markdown_escape(text):
|
||||||
text = str(text)
|
text = str(text)
|
||||||
for special_char in ['\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '#', '+', '-', '.', '!']:
|
for special_char in ['\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '#', '+', '-', '.', '!', '=']:
|
||||||
text = text.replace(special_char, fr'\{special_char}')
|
text = text.replace(special_char, fr'\{special_char}')
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
Reference in a new issue