macro_rules! fieldset {
($($all:tt)*) => { ... };
}Expand description
ยงExample
use rtml::*;
assert_eq!(
fieldset![legend!["This is a fieldset"], "This is the fieldset content"].render(),
"<fieldset><legend>This is a fieldset</legend>This is the fieldset content</fieldset>"
);