We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cities.json inclues a lot of string values that have unescaped forward slashes ('/').
According to https://www.json.org/json-en.html , these are the characters than must be escaped; and forward slash ('/') is among them.
Chars to be escaped: '"' '' '/' 'b' 'f' 'n' 'r' 't' 'u' hex hex hex hex
A quick search and replace solves the issue but not doing it cause unexpected results.
The text was updated successfully, but these errors were encountered:
Hi there, I can't seem to produce a failing test case.
Could you be more specific?
A quick run through this topic seems to point out it's not required by the Json spec per se :
The JSON spec says you CAN escape forward slash, but you don't have to. https://stackoverflow.com/questions/1580647/json-why-are-forward-slashes-escaped
The JSON spec says you CAN escape forward slash, but you don't have to.
https://stackoverflow.com/questions/1580647/json-why-are-forward-slashes-escaped
Sorry, something went wrong.
No branches or pull requests
cities.json inclues a lot of string values that have unescaped forward slashes ('/').
According to https://www.json.org/json-en.html , these are the characters than must be escaped; and forward slash ('/') is among them.
Chars to be escaped:
'"'
''
'/'
'b'
'f'
'n'
'r'
't'
'u' hex hex hex hex
A quick search and replace solves the issue but not doing it cause unexpected results.
The text was updated successfully, but these errors were encountered: