0.1.0 • Published 11 years ago

markupify v0.1.0

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

markupify

Highlight your JSON with HTML markup

npm install markupify

Markupify will take a JSON document and add markup to it so it can be styled in a browser.

var markupify = require('markupify');

var html = markupify({hello:'world'});

console.log(html);

The above example will print the following HTML

<div class="markupify">{
	<span class="key">hello:</span> <span class="string">"world"</span>
}</div>

Afterwards you can use css to style your output to your liking. A stylesheet similar to JSON view is included in style.css

0.1.1

11 years ago

0.1.0

11 years ago