Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix taking references of function arguments (fixes #311) | 2020-04-23 | 1 | -0/+10 | |
| | |||||
* | Fixed clippy warnings | 2020-03-18 | 1 | -0/+2 | |
| | |||||
* | Use _visit_args in var/path calls | 2020-03-18 | 1 | -3/+3 | |
| | |||||
* | Support function calls | 2020-03-18 | 1 | -0/+37 | |
| | |||||
* | Add support for warp | 2020-01-29 | 1 | -1/+2 | |
| | |||||
* | Support escaping in string literals | 2020-01-12 | 1 | -0/+13 | |
| | | | | | | Do not attempt to parse escape sequences thoroughly. Instead let the Rust compiler to check the string literals and provide nice error messages if necessary. | ||||
* | Support char literals | 2020-01-03 | 1 | -1/+1 | |
| | |||||
* | Clean up clippy warnings | 2020-01-02 | 1 | -0/+2 | |
| | |||||
* | Fix formatting with cargo fmt | 2019-11-04 | 1 | -1/+4 | |
| | |||||
* | Moved no-receiver size_hint method to a separate trait (#270) | 2019-10-28 | 1 | -2/+2 | |
| | |||||
* | Add support for boolean literals | 2019-10-08 | 1 | -1/+1 | |
| | |||||
* | WIP: Add raw block | 2019-04-18 | 1 | -0/+23 | |
| | |||||
* | Use 2018 edition idioms | 2018-12-08 | 1 | -2/+0 | |
| | |||||
* | Remove unused macro_use attributes | 2018-12-08 | 1 | -1/+0 | |
| | |||||
* | Fix cargo fmt | 2018-12-07 | 1 | -4/+1 | |
| | |||||
* | Add e2e test for escape | 2018-11-11 | 1 | -0/+16 | |
| | |||||
* | use UFCS in derived code | 2018-11-04 | 1 | -0/+12 | |
| | |||||
* | Add test for unescaped variable expressions (see #132) | 2018-10-20 | 1 | -0/+24 | |
| | |||||
* | make `Template::extension()` static | 2018-10-12 | 1 | -1/+1 | |
| | | | | | It is useful for calculating the media type without instantiating the context value. | ||||
* | Update formatting for rust 1.29.0 rustfmt | 2018-09-14 | 1 | -2/+8 | |
| | |||||
* | Add Template method to return template extension | 2018-07-22 | 1 | -0/+1 | |
| | | | | Thanks to Ryan McGrath for the suggestion and initial implementation. | ||||
* | Add test for unit structs (see #101) | 2018-07-04 | 1 | -0/+9 | |
| | |||||
* | Remove accidental debugging cruft | 2018-06-23 | 1 | -1/+1 | |
| | |||||
* | Add test for Index operation | 2018-06-23 | 1 | -0/+16 | |
| | |||||
* | Fix formatting with cargo fmt | 2018-06-21 | 1 | -21/+21 | |
| | |||||
* | Add test for unary - operator | 2018-04-27 | 1 | -0/+13 | |
| | |||||
* | Add test for ! operator (see #83) | 2018-04-27 | 1 | -0/+13 | |
| | |||||
* | Properly handle whitespace around comments (fixes #79) | 2018-04-17 | 1 | -0/+11 | |
| | |||||
* | Apply suggestions from rustfmt to improve style | 2017-11-21 | 1 | -7/+8 | |
| | |||||
* | Make empty string literals work | 2017-10-22 | 1 | -2/+2 | |
| | |||||
* | Add support for array literals (fixes #59) | 2017-10-20 | 1 | -0/+11 | |
| | |||||
* | Add test for path expressions (see #56) | 2017-10-04 | 1 | -0/+18 | |
| | |||||
* | Add support for tuple indexing in templates | 2017-09-10 | 1 | -0/+12 | |
| | |||||
* | Move JSON test into filters test module | 2017-09-07 | 1 | -28/+1 | |
| | |||||
* | Move escaping tests into a separate module | 2017-09-07 | 1 | -52/+0 | |
| | |||||
* | Add test case for inferred escape mode | 2017-09-07 | 1 | -0/+13 | |
| | |||||
* | Make ext attribute mandatory for source-specified templates | 2017-09-07 | 1 | -3/+3 | |
| | |||||
* | Add some tests for escaping functionality | 2017-09-05 | 1 | -0/+39 | |
| | |||||
* | Adding optional json filter | 2017-08-23 | 1 | -4/+18 | |
| | |||||
* | Implement Display for all Templates | 2017-08-10 | 1 | -0/+13 | |
| | |||||
* | Propagate format errors and rename `render_to()` to `render_into()` | 2017-08-10 | 1 | -14/+14 | |
| | |||||
* | Merge changes | 2017-08-02 | 1 | -0/+19 | |
|\ | |||||
| * | Add test for basic chained attributes | 2017-05-26 | 1 | -0/+19 | |
| | | |||||
* | | Add test that starts with a single brace (see #24) | 2017-08-02 | 1 | -0/+14 | |
|/ | |||||
* | Remove type parameter defaults from impls (fixes #12) | 2017-03-08 | 1 | -1/+2 | |
| | |||||
* | Add test for type parameters and where clauses (see #9) | 2017-03-08 | 1 | -0/+14 | |
| | |||||
* | Create separate test module for loops | 2017-03-07 | 1 | -15/+0 | |
| | |||||
* | Hide askama_derive dependency inside askama (fixes #2) | 2017-03-06 | 1 | -1/+0 | |
| | |||||
* | Add test for comments | 2017-03-03 | 1 | -1/+1 | |
| | |||||
* | Discard trailing newlines from templates by default | 2017-03-03 | 1 | -9/+9 | |
| | | | | This matches Jinja's behavior, and seems sensible. |