#![feature(proc_macro_hygiene)] use rdxl::xhtml; use rdxl_atom::*; fn bs(s: String) -> String { s.split_whitespace().collect::>().join(" ") } #[test] fn format1() { assert_eq!( bs(xhtml!()), r#" "# ); }