time

Macro time 

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

ยงExample

use rtml::*;

assert_eq!(
    time![
        .datetime="2022-07-05T18:00:00Z",
        "July 5th, 2022 6:00 PM"
    ].render(),
    "<time datetime=\"2022-07-05T18:00:00Z\">July 5th, 2022 6:00 PM</time>"
    );