str fails
Closed this issue · 1 comments
herdigiorgi commented
(let ((x "hi"))
(with-html-output-to-string (s)
(:a :href (str x))))
=> "<ahi href='hi'></a>"
stassats commented
Attributes should be used without STR
(let ((x "hi"))
(with-html-output-to-string (s)
(:a :href x)))