[parenscript-devel] Feature request: speed (generating function)

John Fremlin john at fremlin.org
Tue Jun 19 09:38:42 UTC 2007


In my dynamically generated webpages I regularly compile lots of very
simple parenscript like `(append-markup ,element-id ,markup) where
element-id and markup are Lisp strings. Parenscript takes a lot of
time to do this in comparison to everything else.

Ideally, I guess would be something that would generate a function like
        (defun js-append-markup (element-id markup)
          (output "appendMarkup(\"")
          (output (escape element-id))
          (output "\",\"")
          (output (escape markup))
          (output  "\");"))



More information about the parenscript-devel mailing list