Fixed missing escape parsing for backslashes

This commit is contained in:
Mark Qvist 2022-10-20 21:12:16 +02:00
parent c276c29cd0
commit 72cfab3bd2

View File

@ -480,7 +480,11 @@ def make_output(state, line, url_delegate):
elif mode == "text":
if c == "\\":
escape = True
if escape:
part += c
escape = False
else:
escape = True
elif c == "`":
if escape:
part += c