circleci/clj-yaml provides YAML encoding and
decoding for Clojure via the snakeyaml Java library.
(This is a maintained fork of the original).
(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})
By default, keys are converted to clojure keywords.  To prevent this,
add :keywords false parameters to the parse-string function:
(yaml/parse-string "
- {name: John Smith}
" :keywords false)
circleci/clj-yaml is available as a Maven artifact from Clojars.
[circleci/clj-yaml "0.5.6"]
deps.edncircleci/clj-yaml {:mvn/version "0.5.6"}
$ git clone git://github.com/circleci/clj-yaml.git
$ lein deps
$ lein test
$ lein install
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs | 
| ← | Move to previous article | 
| → | Move to next article | 
| Ctrl+/ | Jump to the search field |