mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
13 lines
174 B
Rust
13 lines
174 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(
|
|
ext = "html",
|
|
source = "{{ input|pluralize }}",
|
|
)]
|
|
struct Pluralize {
|
|
input: &'static str,
|
|
}
|
|
|
|
fn main() {}
|