3个版本 (破坏性更新)
0.3.0 | 2022年3月24日 |
---|---|
0.2.0 | 2022年3月17日 |
0.1.0 | 2022年2月17日 |
#123 in #warnings
用于 temply
50KB
1.5K SLoC
temply
temply是一个简单、有偏见的模板引擎。语法来源于 Jinja。模板可以内联定义或在外部文件中定义,并在编译时进行验证。
警告:temply目前不支持HTML转义,因此不适合用于HTML模板。您可能需要查找 askama 或 ructe。
示例
use temply::Template;
#[derive(Debug, Template)]
#[template_inline = "Hello {{ name }}!"]
struct MyTemplate<'a> {
name: &'a str
}
fn main() {
// Init template
let template = MyTemplate { name: "World" };
// Render
let mut buffer = String::new();
template.render(&mut buffer).unwrap();
assert_eq!(buffer, "Hello World!");
}
依赖
~1.5MB
~36K SLoC