Merge updates from dev branch to master #10
|
@ -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}")
|
||||
|
|
Loading…
Reference in New Issue