minify-html 0.5.3

Extremely fast and smart HTML + JS + CSS minifier
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::cfg::Cfg;

pub fn minify_comment(cfg: &Cfg, out: &mut Vec<u8>, code: &[u8], ended: bool) {
    if cfg.keep_comments {
        out.extend_from_slice(b"<!--");
        out.extend_from_slice(code);
        if ended {
            out.extend_from_slice(b"-->");
        };
    };
}