rshtml_core 0.1.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
@while self.count < 10 {
    <p> Counter is: @self.count </p>
    @self.increment()
}

@({ self.count = 1; "" })

@while self.count < 10 {
    <p> Counter is: @self.count </p>
    @({ self.count += 1; "" })
}