diff --git a/README.md b/README.md index 5b29b02..48a84b4 100644 --- a/README.md +++ b/README.md @@ -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 read-edn)` -* Transforming Chicken into EDN: `(with-output-to-port (write-edn ))` +* Transforming EDN into Scheme: `(read-edn )` +* Transforming Scheme into EDN: `(write-edn )` * 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