Document nquads parser
README.md
| 405 | 405 | ||
| 406 | 406 | Generates a string representing a turtle document for the `graph`. This is more | |
| 407 | 407 | accurately a N-Triples representation of the graph, but that format is a subset | |
| 408 | - | of Turtle. | |
| 408 | > | ||
| 409 | 0 | > | \ 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). |