diff --git a/modules/auto-schedule-pro-v2/main.py b/modules/auto-schedule-pro-v2/main.py index 48ea3af..be2d394 100644 --- a/modules/auto-schedule-pro-v2/main.py +++ b/modules/auto-schedule-pro-v2/main.py @@ -42,7 +42,7 @@ def escaped_string_markdownV2(input_string): def escaped_string_html(input_string): result_string = input_string - symbols_to_escape = ['<', '>', '/'] + symbols_to_escape = ['<', '>'] for symbol in symbols_to_escape: result_string = result_string.replace(symbol, f"\\{symbol}")