Fixed README.md

This commit is contained in:
Daniel Ziltener 2020-03-04 00:25:18 +01:00
parent 1040154f91
commit a015c7a21f
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
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`
@ -22,14 +22,14 @@ Data type conversions
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.
API
---
* Transforming EDN into Chicken: `(with-input-from-port <port> read-edn)`
* Transforming Chicken into EDN: `(with-output-to-port <port> (write-edn <datastructure>))`
* Transforming EDN into Scheme: `(read-edn <port>)`
* 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.
Releases