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
Ever backslash-escaped line in the following example should be removed in the final output:
key: value
\:ignore
\:skip
\:endskip
:end
However, only the first backslash is getting removed. The regexp that we are using to remove leading backslashes does not have the g or m flags, both of which are necessary to correctly remove every backslash.
The text was updated successfully, but these errors were encountered:
Ever backslash-escaped line in the following example should be removed in the final output:
However, only the first backslash is getting removed. The regexp that we are using to remove leading backslashes does not have the
g
orm
flags, both of which are necessary to correctly remove every backslash.The text was updated successfully, but these errors were encountered: