The generation of HTML tags with attributes fails when
using the `html' macro without binding the
*html-stream* variable.
> (html ((:a :href "link.html") "link"))
fails -> nil instead of stream error
> (html-stream *standard-output*
(html ((:a :href "link.html") "link")))
<a HREF="link.html">link</a>
Note that simple tag works:
> (html (:h3 "title"))
<h3>title</h3>