Macro td

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

ยงExample

use rtml::*;

assert_eq!(
    td!["Cell 1,1"].render(),
    "<td>Cell 1,1</td>"
);