mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-12-28 08:39:30 -05:00
Fixed missing escape parsing for backslashes
This commit is contained in:
parent
c276c29cd0
commit
72cfab3bd2
@ -480,6 +480,10 @@ def make_output(state, line, url_delegate):
|
|||||||
|
|
||||||
elif mode == "text":
|
elif mode == "text":
|
||||||
if c == "\\":
|
if c == "\\":
|
||||||
|
if escape:
|
||||||
|
part += c
|
||||||
|
escape = False
|
||||||
|
else:
|
||||||
escape = True
|
escape = True
|
||||||
elif c == "`":
|
elif c == "`":
|
||||||
if escape:
|
if escape:
|
||||||
|
Loading…
Reference in New Issue
Block a user