HTML5 minify

HTML5 minifier implementation based on Servo's html5ever.

Features

Examples

```rust use html5minify::Minify;

let html = " \n\n

\n

\nWorld

"; let minified = html.minify().expect("Failed to minify HTML"); ```

TODO