[GNU ELPA] Yaml version 1.2.4
ELPA update <[email protected]> Fri, 05 Jun 2026 17:08:57 -0400
| Newsgroups | gmane.emacs.sources |
|---|---|
| Message-ID | <[email protected]> |
Version 1.2.4 of package Yaml has just been released in GNU ELPA.
You can now find it in M-x list-packages RET.
Yaml describes itself as:
=====================
YAML parser for Elisp
=====================
More at https://elpa.gnu.org/packages/yaml.html
## Summary:
yaml.el contains the code for parsing YAML natively in Elisp with
no dependencies. The main function to parse YAML provided is
`yaml-parse-string'. `yaml-encode' is also provided to encode a
Lisp object to YAML. The following are some examples of its usage:
(yaml-parse-string "key1: value1\nkey2: value2")
(yaml-parse-string "key1: value1\nkey2: value2" :object-type 'alist)
(yaml-parse-string "numbers: [1, 2, 3]" :sequence-type 'list)
(yaml-encode '((count . 3) (value . 10) (items ("ruby" "diamond"))))
## Recent NEWS:
[Not provided 🙁]