From b66aa8b1586a31ddad0c2454e4762661c63385a1 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Thu, 25 Mar 2021 10:41:10 +0100 Subject: [PATCH] Escape '=' to produce valid markdown Signed-off-by: Julien Riou --- companion/telegram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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