use parsercher; fn main() { let xml = r#"
ABCD
EFGH
desk table
"#; if let Ok(dom) = parsercher::parse(&xml) { parsercher::print_dom_tree(&dom); } }