We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a55b9c + d5671ed commit b094a80Copy full SHA for b094a80
HelpSource/Classes/JSONlib.schelp
@@ -26,7 +26,13 @@ code::
26
// escaping of quotes is necessary
27
j = "{\"hello\": 42}";
28
JSONlib.convertToSC(j);
29
-// -> -> ( 'hello': 42 )
+// -> ( 'hello': 42 )
30
+
31
+// to avoid the need for escaping strings, you can also use a symbol.
32
+// (note that you still need to escape ' if they are in your json)
33
+j = '{"hello": 42}';
34
+JSONlib.convertToSC(j);
35
36
::
37
38
Also see link::#*new:: and the link::#examples::.
0 commit comments