================
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)
 
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;
          }
        };In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
- 0.1.1 Updated Build Dependencies
 - 0.1.0 Initial release
 
Chris Miller