toph/
lib.rs

1//! A rust macro for writing HTML templates
2//!
3//! The entrypoint to this crate is the [`html!`] macro.
4
5mod attribute;
6mod encode;
7mod html;
8mod node;
9
10#[doc(hidden)]
11pub use attribute::Attribute;
12
13pub use node::{raw_text, text, Element, Fragment, Node, Text};
14
15#[doc = include_str!("../README.md")]
16#[cfg(doctest)]
17pub struct ReadmeDocTests;