Fixed README.md
This commit is contained in:
parent
1040154f91
commit
a015c7a21f
1 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
||||||
chicken-edn
|
chicken-edn
|
||||||
===========
|
===========
|
||||||
|
|
||||||
An [EDN](https://github.com/edn-format/edn) reader and writer for chicken scheme.
|
An [EDN](https://github.com/edn-format/edn) reader and writer for R7RS compatible Schemes.
|
||||||
|
|
||||||
Installation: `chicken-install edn`
|
Installation: `chicken-install edn`
|
||||||
|
|
||||||
|
@ -22,14 +22,14 @@ Data type conversions
|
||||||
|
|
||||||
Missing reader functionality
|
Missing reader functionality
|
||||||
----------------------------
|
----------------------------
|
||||||
Should you notice missing functionality of the reader, plesase use [the issues page](https://bitbucket.org/zilti/edn/issues?status=new&status=open) to report
|
Should you notice missing functionality of the reader, plesase use [the issues page](https://gitea.lyrion.ch/zilti/edn/issues) to report
|
||||||
it and, if possible, provide a minimal test case.
|
it and, if possible, provide a minimal test case.
|
||||||
|
|
||||||
API
|
API
|
||||||
---
|
---
|
||||||
|
|
||||||
* Transforming EDN into Chicken: `(with-input-from-port <port> read-edn)`
|
* Transforming EDN into Scheme: `(read-edn <port>)`
|
||||||
* Transforming Chicken into EDN: `(with-output-to-port <port> (write-edn <datastructure>))`
|
* Transforming Scheme into EDN: `(write-edn <port> <datastructure>)`
|
||||||
* Using reader tags: the library contains a public a-list `tag-handlers`. To register a handler, add an a-list entry where the key is the tag without `\#` and as a keyword, and the value a one-argument procedure.
|
* Using reader tags: the library contains a public a-list `tag-handlers`. To register a handler, add an a-list entry where the key is the tag without `\#` and as a keyword, and the value a one-argument procedure.
|
||||||
|
|
||||||
Releases
|
Releases
|
||||||
|
|
Loading…
Reference in a new issue