simple-minify-html 0.17.2

Extremely fast and simple fork of minify-html
Documentation
1
2
3
4
5
6
7
8
pub fn minify_doctype(out: &mut Vec<u8>, ended: bool) {
    out.extend_from_slice(b"<!doctype");
    out.push(b' ');
    out.extend_from_slice(b"html");
    if ended {
        out.extend_from_slice(b">");
    };
}