{
  "name": "sanitizer",
  "description": "Caja's HTML Sanitizer as a Node.js module",
  "version": "0.0.15",
  "author": {
    "name": "Ben Smawfield",
    "email": "bensmawfield@googlemail.com"
  },
  "homepage": "http://github.com/theSmaw/Caja-HTML-Sanitizer",
  "bugs": {
    "mail": "bensmawfield@googlemail.com",
    "url": "http://github.com/theSmaw/Caja-HTML-Sanitizer/issues"
  },
  "main": "sanitizer.js",
  "repository": {
    "type": "git",
    "url": "http://github.com/theSmaw/Caja-HTML-Sanitizer.git"
  },
  "readme": "== Installation\n\nnpm install sanitizer\n\n\n== Require\n\nvar sanitizer = require('sanitizer');\n\n\n== Use\n\nsanitizer.escape('your dirty string'); // Escapes HTML special characters in attribute values as HTML entities\n\nvar yourParser = sanitizer.makeSaxParser(yourHandler); // Given a SAX-like event handler, produce a function that feeds those events and a parameter to the event handler.\n\nsanitizer.normalizeRCData('your dirty string'); // Escape entities in RCDATA that can be escaped without changing the meaning.\n\nsanitizer.sanitize('your dirty string'); // Strips unsafe tags and attributes from html.\n\nexports.unescapeEntities('your string'); // The plain text of a chunk of HTML CDATA which possibly containing.\n\n\n== More information\n\nhttp://code.google.com/p/google-caja/source/browse/trunk/src/com/google/caja/plugin/html-sanitizer.js",
  "_id": "sanitizer@0.0.15",
  "_from": "sanitizer"
}
