a json to html syntax highlighter
npm install json-markupPrettyprint JSON to HTML
It is available through npm
npm install json-markup
or as a component for the browser
component install mafintosh/json-markup
json-markup will take a JSON document and add markup to it so it can be styled in a browser.
`` js`
var jsonMarkup = require('json-markup')
var html = jsonMarkup({hello:'world'})
console.log(html);
The above example will print the following HTML
` html`{
hello: "world"
}
If you provide an object map with CSS style then style will be applied inline::
`js
var jsonMarkup = require('json-markup')
var css2json = require('css2json')
var fs = require('fs')
var styleFile = css2json(fs.readFileSync('style.css', 'utf8'))
var html = jsonMarkup({hello:'world', foo: 'bar'}, styleFile)
console.log(html)
`
Now outputs looks like:
`html``{
hello: "world",
foo: "bar"
}
Afterwards you can use css to style your output to your liking.
A stylesheet similar to JSON view is included in style.css
MIT