Skip to main content

body

Macro body 

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

ยงExample

use rtml::*;

assert_eq!(
    body!["This is the body"].render(),
    "<body>This is the body</body>"
);