Suggestion:
Prettify the json form of a list when pretty is specified in the syntax
Example:
set {json::baz::foobar} to 25
set {json::bar} to 15
set {pretty} to pretty json form of {json::*} # see number 1
set {json} to json form of {json::*} # see number 2
1:
{
"bar":15,
"baz":{
"foobar":25
}
}
2:
{"bar":15,"baz":{"foobar":25}}
Suggestion:
Prettify the json form of a list when
prettyis specified in the syntaxExample:
1:
2: