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
Is there a specific reason that this is the case, rather than the backslash character(\)? We've had a few problems come up from doing this, such as when parsing files such as this (I've gisted it as its quite long.)
This will raise enter during multi-line value from here.
The entire format is an auto generated file from CS:GO's built in backup system, including the problematic portions.
Replacing " with \ in the Parser#clean method seems to solve the issue, but I'd like to get some feedback on if this has the posiblity of conflicting with something else.
I can provide more examples of this error if need be, just let me know.
The text was updated successfully, but these errors were encountered:
When parsing vdf files that contain
\
literals, their escaped versions are currently replaced with the"
character, as seen here: https://github.com/skadistats/vdf4r/blob/master/lib/vdf4r/parser.rb#L13.Is there a specific reason that this is the case, rather than the backslash character(
\
)? We've had a few problems come up from doing this, such as when parsing files such as this (I've gisted it as its quite long.)The problematic line is line 4.
This will raise
enter during multi-line value
from here.The entire format is an auto generated file from CS:GO's built in backup system, including the problematic portions.
Replacing
"
with\
in theParser#clean
method seems to solve the issue, but I'd like to get some feedback on if this has the posiblity of conflicting with something else.I can provide more examples of this error if need be, just let me know.
The text was updated successfully, but these errors were encountered: