use yate::html; #[test] fn test() { let world = "planet"; assert_eq!( html! { "Example"
<>
"1"
"2"
"3"
{%= "" %}
}, r#" Example
1
2
3
<uwu>
"# .split('\n') .map(|line| line.trim()) .collect::>() .join("") ); }