html.rs 242 B

12345678910111213
  1. use html_parser::Dom;
  2. fn main() {
  3. let html = "hello world!";
  4. let dom = Dom::parse(html).unwrap();
  5. let body = rsx_rosetta::convert_from_html(dom);
  6. let out = dioxus_autofmt::write_block_out(body).unwrap();
  7. dbg!(out);
  8. }