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
This should be valid JSON, however:
{ "values": [ [ 1, 2, [ 3 ], 4 ] ] }
Becomes: { "values": [ [ 1, 2, [1, 2, 3], 4 ] ] } Notice how the list within the list is expanded from list with 1 item to 3 items.
{ "values": [ [ 1, 2, [1, 2, 3], 4 ] ] }
The text was updated successfully, but these errors were encountered:
I confirm the bug. This happens when the "Inline short arrays" switch is on.
Sorry, something went wrong.
github issue #12
16828dd
Fixed. I also added a depth option so you can specify when to stop inlining arrays. Here is your testcase fixed: http://www.csvjson.com/json_beautifier/25620df899fc8321e98a9282ae168186
No branches or pull requests
This should be valid JSON, however:
{ "values": [ [ 1, 2, [ 3 ], 4 ] ] }
Becomes:
{ "values": [ [ 1, 2, [1, 2, 3], 4 ] ] }
Notice how the list within the list is expanded from list with 1 item to 3 items.
The text was updated successfully, but these errors were encountered: