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