minify-html 0.18.1

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_instruction(cfg: &Cfg, out: &mut Vec<u8>, code: &[u8], ended: bool) {
  if !cfg.remove_processing_instructions {
    out.extend_from_slice(b"<?");
    out.extend_from_slice(code);
    if ended {
      out.extend_from_slice(b"?>");
    };
  };
}