mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
8 lines
145 B
Rust
8 lines
145 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "{% match true %}{% endmatch %}", ext = "html")]
|
|
struct EmptyMatch;
|
|
|
|
fn main() {}
|