0.1.0 • Published 12 years ago
json-formatter v0.1.0
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 :
- Ben Hollis @bhollis (Firefox Extension - http://jsonview.com/)
- Jamie Wilkinson @jamiew (Chrome Port - https://github.com/jamiew/jsonview-chrome)
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
0.1.0
12 years ago