diff --git a/companion/telegram.py b/companion/telegram.py index a213a8d..ce6c5f2 100644 --- a/companion/telegram.py +++ b/companion/telegram.py @@ -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