macro_rules! h6 { ($content:expr) => { ... }; }
Creates <h6> HTML element. The section heading level 6 element.
<h6>
let h = h6!("Heading level 6"); assert_eq!("<h6>Heading level 6</h6>", h.to_string());