Inline XML data directly into your Rust code.
``` rust use inline_xml::xml;
fn main() { let value = 42; let html = xml! {
Hello World
Value: {value}
};println!("{html}");
} ```
Since Rust will tokenize the input and proc_macro_span
is not stabilized,
whitespace will be discarded and therefore inline_xml has to guess about where to put whitespace when printing.
Content::Nested
CollectXml
for Iterators