toph 2.0.1

An HTML generation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A rust macro for writing HTML templates
//!
//! The entrypoint to this crate is the [`html!`] macro.

mod attribute;
mod encode;
mod html;
mod node;

#[doc(hidden)]
pub use attribute::Attribute;

pub use node::{raw_text, text, Element, Fragment, Node, Text};

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDocTests;