minify-html-common 0.0.3

Common code and data for minify-html*
Documentation
use ahash::AHashSet;
use once_cell::sync::Lazy;

pub static VOID_TAGS: Lazy<AHashSet<&'static [u8]>> = Lazy::new(|| {
  let mut s = AHashSet::<&'static [u8]>::default();
  s.insert(b"area");
  s.insert(b"base");
  s.insert(b"br");
  s.insert(b"col");
  s.insert(b"embed");
  s.insert(b"hr");
  s.insert(b"img");
  s.insert(b"input");
  s.insert(b"keygen");
  s.insert(b"link");
  s.insert(b"meta");
  s.insert(b"param");
  s.insert(b"source");
  s.insert(b"track");
  s.insert(b"wbr");
  s
});