use rhtml::*; #[test] fn test() { let mut builder = HtmlBuilder::new(); builder.body().append(html!("h1", {text: "Hello World!"})); assert_eq!( "\ \

Hello World!

", builder.to_string()); }