1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![doc = include_str!("../README.md")] mod attrs; mod escape; mod r#macro; mod render; pub use attrs::Attrs; 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;