stawege-html-plugin 0.1.2

HTML template engine plugin for Stawege.
Documentation
#![warn(
    // missing_docs,
    missing_debug_implementations,
    missing_copy_implementations,
    clippy::std_instead_of_core,
    clippy::std_instead_of_alloc,
    clippy::alloc_instead_of_core,
)]
#![allow(clippy::type_complexity, clippy::too_many_arguments)]

mod attribute;
mod attribute_builder;
mod attribute_parse_state;
mod attributes;
mod html_error;
mod html_plugin;
mod item;
mod tag_logic;
mod tag_logics;
mod template;
mod template_context;

pub use self::{
    attribute::Attribute, attribute_builder::AttributeBuilder,
    attribute_parse_state::AttributeParseState, attributes::Attributes, html_error::HtmlError,
    html_plugin::HtmlPlugin, item::Item, tag_logic::TagLogic, template::Template,
    template_context::TemplateContext,
};