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