Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jnordberg/purgatory

Fast and easy html code cleaning using DOM
https://github.com/jnordberg/purgatory

Last synced: 22 days ago
JSON representation

Fast and easy html code cleaning using DOM

Awesome Lists containing this project

README

        

# purgatory

Easy html cleaning

## Example

var crappyHtml = '



Yo!


';
var niceHtml = purgatory(crappyHtml, {
allow: 'h1,h2,h3,h4,h5,h6,p,img[src alt]'
});

// niceHtml = '

Yo!

';

## Documentation

Todo