use parsercher; fn main() { let html = r#" sample

Hello, world!

"#; if let Ok(dom) = parsercher::parse(&html) { parsercher::print_dom_tree(&dom); } }