On Mon, 28 Jul 2008 11:07:53 +0200 Jens Teich info@jensteich.de wrote:
... similar to how CL-WHO:STR and CL-WHO:HTM work?
Have you already discovered cl-who:fmt?
This won't do it. For example:
METASYNTAX> (cl-who:with-html-output (*standard-output*) (cl-who:fmt "~A" (car '((:p "foo"))))) (P foo) NIL
I need something like:
METASYNTAX> (cl-who:with-html-output (*standard-output*) (cl-who:evaluate (car '((:p "foo"))))) <p>foo</p> NIL