hypertext 0.12.1

A blazing fast type-checked HTML macro crate.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-exported items for convenience.
//!
//! This module re-exports all the commonly used items from the crate,
//! so you can use them without having to import them individually. It also
//! re-exports the [`hypertext_elements`] module, and any [framework-specific
//! attribute traits](crate::validation::attributes) that have been enabled, as
//! well as the [`GlobalAttributes`] trait.
pub use crate::validation::{attributes::*, hypertext_elements};
#[cfg(feature = "alloc")]
pub use crate::{Renderable, RenderableExt as _, Rendered, attribute, component, maud, rsx};