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