macro_rules! children { () => { ... }; ($($child:expr),* $(,)?) => { ... }; }
Build a list of nodes with mixed types.
let nodes = children!["text", p()];