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
It would be great if the plugin has an option to escape and unescape a JSON in the same window or in a new window
Something like:
From {"name":"John","age":30,"car":null}
{"name":"John","age":30,"car":null}
Into {\"name\":\"John\",\"age\":30,\"car\":null}
{\"name\":\"John\",\"age\":30,\"car\":null}
or From
{ "name": "John", "age": 30, "car": null }
Into {\r\n \"name\": \"John\",\r\n \"age\": 30,\r\n \"car\": null\r\n}
{\r\n \"name\": \"John\",\r\n \"age\": 30,\r\n \"car\": null\r\n}
Or the other way around, from an escaped string to an unescaped JSON
From {\"name\":\"John\",\"age\":30,\"car\":null} Into {"name":"John","age":30,"car":null}
Similar to this: https://www.freeformatter.com/json-escape.html#before-output
The text was updated successfully, but these errors were encountered:
I'll leave this open to see if any others want it.
Sorry, something went wrong.
No branches or pull requests
It would be great if the plugin has an option to escape and unescape a JSON in the same window or in a new window
Something like:
From
{"name":"John","age":30,"car":null}
Into
{\"name\":\"John\",\"age\":30,\"car\":null}
or
From
Into
{\r\n \"name\": \"John\",\r\n \"age\": 30,\r\n \"car\": null\r\n}
Or the other way around, from an escaped string to an unescaped JSON
From
{\"name\":\"John\",\"age\":30,\"car\":null}
Into
{"name":"John","age":30,"car":null}
Similar to this:
https://www.freeformatter.com/json-escape.html#before-output
The text was updated successfully, but these errors were encountered: