hypo 0.1.0

tiny crate that renders html through macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

mod attribute;
mod element;
mod escape;
mod r#macro;
mod render;

pub use attribute::Attributes;
pub use element::Element;
pub use render::{Fn, Raw, Render};

/// the canonical html doctype
pub const DOCTYPE: Raw<&str> = Raw("<!DOCTYPE html>");

#[cfg(feature = "kebab")]
pub use const_str;