3 个版本 (重大更新)

0.3.0 2022年3月24日
0.2.0 2022年3月17日
0.1.0 2022年2月17日

#442模板引擎

MIT/Apache

14KB
84

temply

Build Status crates.io docs.rs codecov

temply 是一个简单、有偏见的模板引擎。语法来源于 Jinja。模板可以内联定义或在外部文件中定义,并在编译时进行验证。

警告:temply 当前不处理 HTML 转义,因此不适合用于 HTML 模板。您可能需要查找 askamaructe

示例

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!");
}

依赖

~220KB