#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub use html5ever::{Attribute, LocalName, Namespace, Prefix, QualName, tendril::StrTendril};
mod helpers;
mod html;
mod sanitizer_config;
pub use self::{helpers::*, html::*, sanitizer_config::*};
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[allow(clippy::exhaustive_enums)]
pub enum HtmlSanitizerMode {
Strict,
Compat,
}