#[derive(Clone, Default)]
pub struct Cfg {
pub keep_closing_tags: bool,
pub keep_comments: bool,
pub keep_html_and_head_opening_tags: bool,
pub keep_input_type_text_attr: bool,
pub keep_ssi_comments: bool,
pub remove_bangs: bool,
pub remove_processing_instructions: bool,
}
impl Cfg {
#[must_use]
pub fn new() -> Cfg {
Cfg::default()
}
}