Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 510 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 510 Bytes

jsonld-markup

Pretty print JSON-LD to HTML, adding hyperlinks to the keys (from the JSON-LD context).

jsonld-markup is adapted from json-markup.

var code = document.querySelector('code');
var data = JSON.parse(code.textContent.trim());
code.innerHTML = jsonldMarkup(data, {'@vocab': "http://schema.org/"})

Note: a context must be specified (this module won't fetch an existing context).

License

Apache 2.0