5 releases
Uses old Rust 2015
0.1.0 | Nov 19, 2015 |
---|---|
0.0.4 | Oct 24, 2015 |
0.0.3 | Oct 11, 2015 |
0.0.2 | Sep 16, 2015 |
0.0.1 | Aug 15, 2015 |
#279 in Template engine
165KB
4K
SLoC
Twig template engine for Rust
Flexible, fast, secure template engine for Rust. The aim is to be 100% syntactically compatible with Twig for PHP. The secondary aim is to provide functionally equivalent ways to extend and customize template with extensions.
Note that at this moment this is very much work in progress, and is not usable.
The goal of 1.0 version is to pass test suite functionally equivalent to Twig 2.0 (issue #1).
Motivation
- Designers are familiar with Twig.
- Reuse existing IDE support for Twig.
Build Requirements
- Minimum Rust version: 1.3.0.
TODO list
- Parser implementation is not finished (issue #3).
- LLTL (low level template language), basics implemented in little-rs subproject, issue #4.
Example of working lexer
Run example that iterates over template in templates/fos_login.html.twig:
cargo run --example lex_tokens
Will produce list of tokens in console:
Ok(Token { value: BlockStart, line_num: 1 })
Ok(Token { value: Name("extends"), line_num: 1 })
Ok(Token { value: String(FOSUserBundle::layout.html.twig), line_num: 1 })
Ok(Token { value: BlockEnd, line_num: 1 })
Ok(Token { value: Text("\n"), line_num: 2 })
Ok(Token { value: BlockStart, line_num: 3 })
...
Example of working parser
Run example that parses this template:
test {{ var + 1 }}
cargo run --example parse_nodes
Will output parsed module in console:
Ok(
Module {
body: List {
items: [
Text {
value: "test ",
line: 1
},
Print {
expr: Expr {
line: 1,
value: BinaryOperator {
value: "+",
left: Expr {
line: 1,
value: Name(
"var"
)
},
right: Expr {
line: 1,
value: Constant(
Int(
1
)
)
}
}
},
line: 1
}
]
}
}
)
Dependencies
~5MB
~97K SLoC