use htmlrs::{html, view}; fn main() { let page = html! {

hello world

}; println!("{}", page); assert_eq!(page, "

hello world

") }