graph-rdfa-processor
Version:
Green turtle GraphRdfaProcessor extracted and available as a commonJS module
35 lines (23 loc) • 1.13 kB
Markdown
[](https://circleci.com/gh/science-periodicals/graph-rdfa-processor)
Note: this module is auto published to npm on CircleCI. Only run `npm version
patch|minor|major` and let CI do the rest.
Green turtle GraphRdfaProcessor extracted and available as a
standalone commonJS / ES2015 module.
All credits are due to Alex Milowski for
[](https://github.com/alexmilowski/green-turtle).
Aside from the adaptation to ES2015, some little changes were made to
make it compatible with [jsdom](https://github.com/tmpvar/jsdom). Also
proper Errors are now thrown instead of plain strings.
For convenience, a high level API has been added:
```js
import getRdfaGraph from graph-rdfa-processor;
let opts = {baseURI: 'http://example.com'};
let graph = getRdfaGraph(documentOrNode, opts);
console.log(graph.toString());
```
See the tests for a full example.
see
[](https://github.com/science-periodicals/jsonld-rdfa-parser)
(using this module to extract the RDFa graph.