(who-ps-html (:p "t0" (:span "t1"))), evals to an error, saying function :span is not defined.
althrough CL-WHO accepts the following:
(who:with-html-output-to-string (s) (:p "t0" (:span "t1")))
As does HTOUT:
> (with-output-to-string (s)
(with-html-output (s)
(:p "t0" (:span "t1"))))
"<P>t0<SPAN>t1</SPAN></P>"
>
-Rob
-----
Rob Warnock <rp...@rpw3.org>
627 26th Avenue <http://rpw3.org/>
San Mateo, CA 94403