
8 Jul
2008
8 Jul
'08
12:36 p.m.
On Tue, 8 Jul 2008 16:33:13 +0400, "Stas Boukarev" <stassats@gmail.com> wrote:
I have the following with cl-who-0.11.1:
(with-html-output-to-string (i) (:div :id (str "foo")))
"<divfoo id='foo'></div>"
You're mixing tag content and attributes. Try this: (with-html-output-to-string (i) (:div :id "foo")) The documentation for CL-WHO is here: http://weitz.de/cl-who/#syntax Edi.