h6

Macro h6 

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

Creates <h6> HTML element. The section heading level 6 element.

ยงExample

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