This crate is a simple HTML sanitizer, build on top of html5ever

With this crate, you can determine for every HTML tag what you want to sanitize. This is done by the Tag struct that gets passed for every HTML tag.

```rust use std::fs::File; use html_sanitizer::TagParser;

fn main() { let mut file = File::open("yourhtmldocument.html").unwrap(); let mut tagparser = TagParser::new(&mut file); let result = tagparser.walk(|tag| { if tag.name == "html" || tag.name == "body" { // ignore and tags, but still parse their children tag.ignoreself(); } else if tag.name == "head" || tag.name == "script" || tag.name == "style" { // Ignore ,