mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-05-04 07:05:17 -04:00
Fixed missing escape parsing for backslashes
This commit is contained in:
parent
c276c29cd0
commit
72cfab3bd2
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue