Homepage: https://github.com/philjackson/xmlgen
Author: Philip Jackson
Updated:
A DSL for generating XML
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