by jastr on 11/10/21, 9:56 PM with 4 comments
by savy91 on 11/11/21, 10:28 AM
Input:
{"somekey": "value", "someother": "value,value,value"}
Output:
{
"somekey": "value",
"someother": "value,
value,
value"
}Seems like the problem is with commas being converted to ,\n regardelss of them being inside a valid string.
by shmoogy on 11/11/21, 3:28 AM
Thanks
by jastr on 11/10/21, 10:07 PM
Pretty print json with single quotes or None or anything that looks like json, like python dictionaries/arrays or anything that PHP can spit out.
by eduardosasso on 11/11/21, 4:32 AM