philjackson / xmlgen

An s-expression to XML DSL in elisp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generate xml using sexps with the function `xmlgen':

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

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

produces this (though wrapped):

<html>
  <head>
    <title>hello</title>
    <meta something="hi" />
  </head>
  <body>
    <h1>woohhooo</h1>
    <p>text</p>
    <p>more text</p>
  </body>
</html>

To run the unit tests, run from the directory where the repository is checked out:

emacs -Q -batch -L . -l xmlgen-test.el -f ert-run-tests-batch-and-exit

About

An s-expression to XML DSL in elisp

License:GNU General Public License v2.0


Languages

Language:Emacs Lisp 100.0%