pubmodchart_xml;pubmodpres_xml;pubmodrels_xml;pubmodslide_xml;pubmodtable_xml;/// Carriage-return + line-feed, as used in OOXML files
pubconstCRLF:&str="\r\n";/// A simple macro to append formatted strings to a String buffer.
/// Equivalent to `write!(buf, ...).expect(...)` but cleaner at call sites.
#[allow(unused_macros)]macro_rules!xml{($buf:expr, $($arg:tt)*)=>{{usestd::fmt::Write;write!($buf,$($arg)*).expect("write to String is infallible")}};}#[allow(unused_imports)]pub(crate)use xml;