Documentation
1
2
3
4
5
6
7
8
9
10
11
use htmlrs::{html, view};

fn main() {
    let page = html! {
        <div>
            <p>hello world</p>
        </div>
    };
    println!("{}", page);
    assert_eq!(page, "<div><p>hello world</p></div>")
}