minify-html/rust/main/src/minify/comment.rs

12 lines
288 B
Rust
Raw Normal View History

2021-08-06 02:17:45 -04:00
use crate::cfg::Cfg;
2021-08-06 09:18:45 -04:00
pub fn minify_comment(cfg: &Cfg, out: &mut Vec<u8>, code: &[u8], ended: bool) {
2021-08-07 00:56:20 -04:00
if cfg.keep_comments {
2021-08-06 02:17:45 -04:00
out.extend_from_slice(b"<!--");
2021-08-06 09:18:45 -04:00
out.extend_from_slice(code);
2021-08-06 02:17:45 -04:00
if ended {
out.extend_from_slice(b"-->");
};
};
}