The following code inserts third-party generated javascript as a string which will need to be eval'ed.
(ps (let ((x (lisp (json:encode-json-alist-to-string
'((:a . 1) (:b . 2))))))))
"(function () {
var x = '{\"a\":1,\"b\":2}';
return null; })();"
Is there a way to tell parenscript to insert a string unquoted?
Added this to parenscript's non-cl.lisp file:
Result: