pub mod embedded;
pub mod flow;
pub mod heading;
pub mod interactive;
pub mod metadata;
pub mod palpable;
pub mod phrasing;
pub mod script_supporting;
pub mod sectioning;
pub use embedded::*;
pub use flow::*;
pub use heading::*;
pub use interactive::*;
pub use metadata::*;
pub use palpable::*;
pub use phrasing::*;
pub use script_supporting::*;
pub use sectioning::*;
#[derive(Clone, Debug, PartialEq, strum_macros::Display, strum_macros::EnumIs)]
#[strum(serialize_all = "lowercase")]
pub enum HTMLContent {
Embedded(EmbeddedContent),
Flow(FlowContent),
Heading(HeadingContent),
Interactive(InteractiveContent),
Metadata(MetadataContent),
Palpable(PalpableContent),
Phrasing(PhrasingContent),
ScriptSupporting(ScriptSupportingElement),
Sectioning(SectioningContent),
}