use minify_html::Cfg;
#[cfg(feature = "minify-html")]
pub static COMPRESS_CONFIG: Cfg = Cfg {
minify_js: true,
minify_css: true,
do_not_minify_doctype: true,
ensure_spec_compliant_unquoted_attribute_values: true,
keep_closing_tags: true,
keep_html_and_head_opening_tags: true,
keep_spaces_between_attributes: true,
keep_comments: false,
keep_input_type_text_attr: false,
keep_ssi_comments: false,
preserve_brace_template_syntax: true,
preserve_chevron_percent_template_syntax: false,
remove_bangs: false,
remove_processing_instructions: false
};