This library is no longer maintained. An actively developed fork is suggested.
clj-yaml
provides YAML encoding and decoding for Clojure via the SnakeYAML Java library.
(require '[clj-yaml.core :as yaml])
(yaml/generate-string
[{:name "John Smith", :age 33}
{:name "Mary Smith", :age 27}])
"- {name: John Smith, age: 33}\n- {name: Mary Smith, age: 27}\n"
(yaml/parse-string "
- {name: John Smith, age: 33}
- name: Mary Smith
age: 27
")
=> ({:name "John Smith", :age 33}
{:name "Mary Smith", :age 27})
clj-yaml
is available as a Maven artifact from Clojars:
:dependencies
[["clj-yaml" "0.4.0"]
...]
$ git clone git://github.com/lancepantz/clj-yaml.git
$ lein deps
$ lein test
$ lein install