Skip to main content

h3

Macro h3 

Source
macro_rules! h3 {
    ($($all:tt)*) => { ... };
}
Expand description

ยงExample

use rtml::*;

assert_eq!(
    h3!["This is a heading"].render(),
    "<h3>This is a heading</h3>"
);