Generate xml using sexps with the function `xmlgen': (xmlgen '(p :class "big")) => "

") (xmlgen '(p :class "big" "hi")) => "

hi

") (xmlgen '(html (head (title "hello") (meta :something "hi")) (body (h1 "woohhooo") (p "text") (p "more text")))) produces this (though wrapped): hello

woohhooo

text

more text