0.1.0 • Published 11 years ago

json-formatter v0.1.0

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

JSON -> HTML Formatter

A JSON to HTML formatter for use with AMD/Non-AMD

Convert basic JSON datatypes (number, string, boolean, null, object, array) into an HTML fragments.

Code Extracted and modified to be a more reusable following the (Universal Module Definition) pattern.

Based On Firefox/Chrome Extension's :

Usage

new JSONFormatter(options).toHtml(json);

Supported options - number - string - boolean - object - array

Example options override

   var formatterOptions = {
          'string' : function(key,val) {
            if (key === 'id') return '<a class="link" data-request="'+val+'">'+val+'</a>';
            return false;
          }
        };

License

MIT/BSD