Merge updates from dev branch to master #10

Merged
dymik739 merged 12 commits from dev into master 2023-09-12 12:32:45 +03:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5dc78b8cb0 - Show all commits

View File

@ -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}")