h5

Macro h5 

Source
macro_rules! h5 {
    ($content:expr) => { ... };
}
Expand description

Creates <h5> HTML element. The section heading level 5 element.

ยงExample

let h = h5!("Heading level 5");
assert_eq!("<h5>Heading level 5</h5>", h.to_string());