h4

Macro h4 

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

Creates <h4> HTML element. The section heading level 4 element.

ยงExample

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