hypo 0.2.1

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
18
#![doc = include_str!("../README.md")]

mod attrs;
mod escape;
mod r#macro;
mod render;

#[cfg(feature = "axum")]
mod axum;

pub use attrs::Attrs;
pub use render::{Raw, Render, render};

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

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