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
e g this fbx file converts to this json file which fails to parse in firefox with following error:
SyntaxError: JSON.parse: bad escaped character at line 9141 column 53 of the JSON data
The text was updated successfully, but these errors were encountered:
the offending symbol combination in json is:
"name": "RPC Tree - Deciduous Scarlet Oak - 42\' [946164]"
the original data in fbx file:
Sorry, something went wrong.
basically boils down to this:
escape backslashes and single quotes, both would render the JSON invalid if left as is
which is incorrect, single quote is just fine if left as is (proof).
No branches or pull requests
e g this fbx file converts to this json file which fails to parse in firefox with following error:
The text was updated successfully, but these errors were encountered: