You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The escape \ character is not handled consistently.
It the escape charater is the first on the line it seems to escape only #, >, < and -, it will not escape \ or `.
To Reproduce
Describe in detail how to reproduce the bug.
input.mu
\`text
\\text
text\`F0g0not green
\`F0f0should not be green
actual output
ext
text
text`F0g0not green
should not be green
The last line is green
Expected Behavior
expected output
`text
\text
text`F0g0not green
`F0g0should not be green
Logs & Screenshots
System Information
OS and version
Linux, macOS
Python version
Program version
Nomad Network Client 0.6.0
Additional context
Escaping should be consistent especially handeling generated content safely.
Generating a large number of < characters could lead to issues.
Also it looks like and fields and links can be generated because ` are located by line.find(...) and any escaping is ignored.
The text was updated successfully, but these errors were encountered:
Describe the Bug
The escape
\
character is not handled consistently.It the escape charater is the first on the line it seems to escape only
#
,>
,<
and-
, it will not escape\
or `.To Reproduce
Describe in detail how to reproduce the bug.
input.mu
actual output
The last line is green
Expected Behavior
expected output
Logs & Screenshots
System Information
OS and version
Linux, macOS
Python version
Program version
Nomad Network Client 0.6.0
Additional context
Escaping should be consistent especially handeling generated content safely.
Generating a large number of
<
characters could lead to issues.Also it looks like and fields and links can be generated because ` are located by
line.find(...)
and any escaping is ignored.The text was updated successfully, but these errors were encountered: