We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c569689 commit 9fa26a2Copy full SHA for 9fa26a2
README.md
@@ -106,6 +106,12 @@ const parser4 = N3.Parser({ format: 'Notation3' });
106
const parser5 = N3.Parser({ format: 'text/n3' });
107
```
108
109
+It is possible to provide the base IRI of the document that you want to parse.
110
+This is done by passing a `baseIRI` argument upon creation:
111
+```JavaScript
112
+const parser = new N3.Parser({ baseIRI: 'http://example.org/' });
113
+```
114
+
115
### From an RDF stream to quads
116
117
`N3.Parser` can parse [Node.js streams](http://nodejs.org/api/stream.html) as they grow,
0 commit comments