htmlsanitizer

0.0.2 • Public • Published

node-htmlsanitizer

A simple wrapper for calling httpsanitzer.org (which itself is a wrapper for calling bleach.clean from the python bleach library)

Usage

Install with npm install htmlsanitizer

Default options

{
  text: null,
  tags: [
    'a',
    'abbr',
    'acronym',
    'b',
    'blockquote',
    'code',
    'em',
    'i',
    'li',
    'ol',
    'strong',
    'ul',
  ],
  attributes: {
    a: ['href', 'title'],
    abbr: ['title'],
    acronym: ['title'],
  },
  styles: [],
  strip: false,
  stripComments: true  
}
htmlsanitizer(String, callback) // use the defaults
htmlsanitizer(Object, callback) // override some or all of the defaults

callback has the classic signature function (error, safehtml)

Readme

Keywords

none

Package Sidebar

Install

npm i htmlsanitizer

Weekly Downloads

4

Version

0.0.2

License

http://wtfpl.org

Last publish

Collaborators

  • brianloveswords
  • jbuck