use html_parser::Dom; fn main() { let html = r#"
hello world!
hello world!
hello world!
hello world!
hello world!
hello world!
hello world!
"# .trim(); let dom = Dom::parse(html).unwrap(); let body = dioxus_rsx_rosetta::rsx_from_html(&dom); let out = dioxus_autofmt::write_block_out(&body).unwrap(); println!("{out}"); }