macro_rules! base {
() => { ... };
( .$attr_left:ident = $value_left:expr $(,.$attr:ident = $value:expr)*) => { ... };
}Expand description
Example
use rtml::*;
assert_eq!(
base![.href="https://example.com"].render(),
"<base href=\"https://example.com\">"
);