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