//! Let's you easily try out the NaiveParser with e.g.
//! printf '<style><b>Hello world!</b></style>' | cargo run --example=naive-parser
usehtml5tokenizer::NaiveParser;usestd::io::{stdin, BufReader};fnmain(){let stdin =stdin();for token inNaiveParser::new(BufReader::new(stdin.lock())){let token = token.unwrap();println!("{:?}", token);}}