Document nquads parser

Julien LepillerTue Apr 07 04:58:51+0200 2020

f4a59ef

Document nquads parser

README.md

405405
406406
Generates a string representing a turtle document for the `graph`.  This is more
407407
accurately a N-Triples representation of the graph, but that format is a subset
408-
of Turtle.
408>
4090>
\ No newline at end of file
408+
of Turtle.
409+
410+
### N-Quads Format
411+
412+
N-Quads is a textual format to represent RDF datasets.  We include a parser and
413+
in guile-rdf.  The `(nquads tordf)` module defines a parser:
414+
415+
#### **Scheme Procedure**: `turtle->rdf str-or-file`
416+
417+
Generates an RDF dataset from the file or string passed as first argument
418+
(we first check whether the string is a file on the filesystem, then we
419+
parse it as a string).