edicl/cl-who

str fails

Closed this issue · 1 comments

(let ((x "hi")) 
  (with-html-output-to-string (s) 
    (:a :href (str x))))
=> "<ahi href='hi'></a>"

Attributes should be used without STR

(let ((x "hi")) 
  (with-html-output-to-string (s) 
    (:a :href x)))