minify-html/src/spec/tag/void.rs

20 lines
279 B
Rust
Raw Normal View History

2019-12-29 05:53:49 -05:00
use phf::{phf_set, Set};
pub static VOID_TAGS: Set<&'static [u8]> = phf_set! {
2020-01-25 19:35:57 -05:00
b"area",
b"base",
b"br",
b"col",
b"embed",
b"hr",
b"img",
b"input",
b"keygen",
b"link",
b"meta",
b"param",
b"source",
b"track",
b"wbr",
};