Skip to main content

col

Macro col 

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

ยงExample

use rtml::*;

assert_eq!(
    col![.span="2", .style="background-color:red"].render(),
    "<col span=\"2\" style=\"background-color:red\">"
);