1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Adapted from [`html5ever`](https://github.com/servo/html5ever)
#![allow(
    clippy::match_single_binding,
    clippy::unknown_clippy_lints,
    clippy::match_on_vec_items
)]
#[macro_use]
mod macros;
pub mod driver;
#[macro_use]
pub mod interface;
pub mod serializer;
pub mod tokenizer;
pub mod tree_builder;
pub mod utils;