stawege_html_plugin/
lib.rs

1#![warn(
2    // missing_docs,
3    missing_debug_implementations,
4    missing_copy_implementations,
5    clippy::std_instead_of_core,
6    clippy::std_instead_of_alloc,
7    clippy::alloc_instead_of_core,
8)]
9#![allow(clippy::type_complexity, clippy::too_many_arguments)]
10
11mod attribute;
12mod attribute_builder;
13mod attribute_parse_state;
14mod attributes;
15mod html_error;
16mod html_plugin;
17mod item;
18mod tag_logic;
19mod tag_logics;
20mod template;
21mod template_context;
22
23pub use self::{
24    attribute::Attribute, attribute_builder::AttributeBuilder,
25    attribute_parse_state::AttributeParseState, attributes::Attributes, html_error::HtmlError,
26    html_plugin::HtmlPlugin, item::Item, tag_logic::TagLogic, template::Template,
27    template_context::TemplateContext,
28};