parseedn
- Description
- Clojure/EDN parser
- Latest
- parseedn-1.2.1.0.20231203.190947.tar (.sig), 2024-Mar-31, 40.0 KiB
- Maintainer
- Arne Brasseur <arne@arnebrasseur.net>
- Atom feed
- parseedn.xml
- Website
- http://www.github.com/clojure-emacs/parseedn
- Browse ELPA's repository
- CGit or Gitweb
- Badge
To install this package from Emacs, use package-install or list-packages.
Full description
EDN parser for Emacs Lisp
parseedn is an Emacs Lisp library for parsing EDN
data. It uses
parseclj's shift-reduce parser
internally.
EDN and Emacs Lisp have some important differences that make translation from
one to the other not transparent (think representing an EDN map into Elisp, or
being able to differentiate between false and nil in Elisp). Because of
this, parseedn takes certain decisions when parsing and transforming EDN data
into Elisp data types. For more information please refer to parseclj
DESIGN.md
document.
Lastly, parseedn is in alpha stage, so its API is subject to change.
Installation
Available on the major package.el community maintained repos -
MELPA Stable and MELPA repos.
MELPA Stable is the recommended repo as it has the latest stable version. MELPA has a development snapshot for users who don't mind (infrequent) breakage but don't want to run from a git checkout.
You can install parseedn using the following command:
M-x package-install [RET] parseedn [RET]
or if you'd rather keep it in your dotfiles:
el
(unless (package-installed-p 'parseedn)
(package-install 'parseedn))
If the installation doesn't work try refreshing the package list:
M-x package-refresh-contents
Usage
parseedn-readRead content from the current buffer as EDN and transforms it into an Emacs Lisp value.
parseedn-read-strstrRead STR as EDN and transfroms it into an Emacs Lisp value.
parseedn-printdatumInserts DATUM as EDN Into the current buffer. DATUM can be any Emacs Lisp value.
parseedn-print-strdatumReturns a string containing DATUM as EDN. DATUM can be any Emacs Lisp value.
Prior art
edn.el is an EDN-to-elisp parser based on the PEG parser generator library.
License
© 2017-2023 Arne Brasseur
Distributed under the terms of the GNU General Public License 3.0 or later. See LICENSE.
Old versions
| parseedn-1.2.0.0.20230929.150051.tar.lz | 2023-Sep-29 | 7.73 KiB |
| parseedn-1.1.0.0.20230911.151636.tar.lz | 2023-Sep-11 | 7.32 KiB |
| parseedn-1.1.0.0.20220520.83536.tar.lz | 2022-May-20 | 5.46 KiB |
| parseedn-1.1.0.0.20220512.132846.tar.lz | 2022-May-12 | 5.44 KiB |
| parseedn-1.1.0.0.20220422.93658.tar.lz | 2022-Apr-22 | 5.44 KiB |
| parseedn-1.1.0.0.20220207.85223.tar.lz | 2022-Feb-07 | 5.44 KiB |
| parseedn-1.0.6.0.20211013.45252.tar.lz | 2021-Dec-28 | 5.09 KiB |
News
1.2.1 (2023-12-03)
- Update parseclj to 1.1.1.
1.2.0 (2023-09-29)
- #12: Allow empty vectors to be printed.
- #14: avoid C stack overflows.
- #15: correctly process empty hashmaps.
- #17: Add support for namespaced maps.
1.1.0 (2022-02-07)
- #11 Support a default-data-reader for tagged literals
- Via parseclj: support bigint
1.0.6 (2021-10-13)
- Make sure parseedn and parseclj versions are in sync
1.0.5 (2021-10-13)
- #10 Replace
cl-casewithcond
1.0.4 (2021-09-30)
- Drop use of (map-merge 'alist) for older Emacsen
1.0.3 (2021-09-29)
- Follow upstream parseclj versioning
1.0.2 (2021-09-29)
- Follow upstream parseclj versioning
1.0.0 (2021-09-27)
Added
- Added print handler for
#uuidand#inst
0.2.0 (2020-09-09 / d25ebc5)
Added
- Add support for alist, plist and an explicit error for unsupported dotted pair notation.
Fixed
- Fix printing of hash-maps with multiple entries.
0.1.0 (2019-03-31 / ddf824b)
Initial release of parseedn