rshtml_core 0.2.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
@time(&self.date)
@time("2025-05-25")

<script>
    let users = @#json(&self.users)
    @#json_let("my_users", &self.users)
</script>

@if has_section("section") {
    <p>section defined</p>
} else {
    <p>section not defined</p>
}