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
Hi, a solidus char: '/' in JSON, as per: http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf is required to be escaped too, however your validation tool let it pass unescaped.
The text was updated successfully, but these errors were encountered:
No, solidus does not need to be escaped. As per the document you linked:
the code points that must be escaped: quotation mark (U+0022), reverse solidus (U+005C), and the control characters U+0000 to U+001F
Solidus does not fall into this category. You CAN escape a solidus but it is not required.
Sorry, something went wrong.
No branches or pull requests
Hi, a solidus char: '/' in JSON, as per:
http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf
is required to be escaped too, however your validation tool let it pass unescaped.
The text was updated successfully, but these errors were encountered: