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 issue with escaped backslashes \\ (reverse solidus) is solved.
The issue with forward slashes \/ (solidus) not. The difficulty is that escaping of this character is optional, and that in JavaScript there is no difference between the two: '\/' === '/'. As soon as you parse the JSON, the \/ character is turned into / and this information is lost. This can't be fixed with the built-in JSON parser. I found the following discussion and background information helpful in this regard: https://stackoverflow.com/questions/1580647/json-why-are-forward-slashes-escaped
Example document:
When
escapeControlCharacters:true
, the backslash should be rendered as\\
in tree mode, but it is rendered as\
The text was updated successfully, but these errors were encountered: