Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow using brackets for enums in `match` | mcarton | 2018-12-12 | 1 | -4/+50 |
| | |||||
* | Use 2018 edition idioms | Dirkjan Ochtman | 2018-12-08 | 1 | -2/+2 |
| | |||||
* | Upgrade to 2018 edition | Dirkjan Ochtman | 2018-12-08 | 1 | -3/+3 |
| | |||||
* | Add Rust macro support at templates | bott | 2018-10-07 | 1 | -1/+12 |
| | |||||
* | Fix deprecated tag s! in favor of tag! | bott | 2018-10-05 | 1 | -83/+83 |
| | |||||
* | Fix fmt at parser.rs | bott | 2018-10-05 | 1 | -28/+42 |
| | |||||
* | Add changing delimiters support | bott | 2018-10-05 | 1 | -68/+106 |
| | |||||
* | Clean up according to clippy suggestions | Dirkjan Ochtman | 2018-07-02 | 1 | -1/+1 |
| | |||||
* | Add support for range operators (see #95) | Dirkjan Ochtman | 2018-06-23 | 1 | -1/+21 |
| | |||||
* | Add support for Index operation (see #95) | Dirkjan Ochtman | 2018-06-23 | 1 | -1/+16 |
| | |||||
* | Disallow user-defined macros named 'super' | Dirkjan Ochtman | 2018-06-22 | 1 | -9/+14 |
| | |||||
* | Clean up clippy suggestions | Dirkjan Ochtman | 2018-06-21 | 1 | -1/+1 |
| | |||||
* | Port parser to nom 4 | Dirkjan Ochtman | 2018-06-15 | 1 | -67/+79 |
| | |||||
* | Fix copy/paste error in whitespace handling | Dirkjan Ochtman | 2018-05-14 | 1 | -2/+2 |
| | |||||
* | Add support for unary operators (fixes #83) | Dirkjan Ochtman | 2018-04-27 | 1 | -1/+11 |
| | |||||
* | Properly handle whitespace around comments (fixes #79) | Dirkjan Ochtman | 2018-04-17 | 1 | -3/+4 |
| | |||||
* | Isolate proc-macro dependency to the proc macro | David Tolnay | 2018-04-12 | 1 | -0/+694 |
| | | | | | | | | | The dependency of askama on askama_shared on syn on libproc_macro used to mean libproc_macro would be dynamically linked into any crate using askama. We want only askama_derive to have a runtime dependency on proc macro. This commit moves all proc macro code from askama_shared into askama_derive so that the askama crate no longer dynamically links libproc_macro. | ||||
* | Move most of the code into new askama_shared crate | Dirkjan Ochtman | 2017-08-27 | 1 | -471/+0 |
| | | | | This makes it possible to share code between askama and askama_derive. | ||||
* | Allow {% block name %} {% endblock name %} | Bastien Orivel | 2017-08-24 | 1 | -0/+1 |
| | | | | This makes converting an app from tera to askama easier. | ||||
* | Add support for calling macros | Dirkjan Ochtman | 2017-08-22 | 1 | -13/+24 |
| | |||||
* | Refactor parser handling of arguments | Dirkjan Ochtman | 2017-08-22 | 1 | -21/+19 |
| | |||||
* | Implement support for macro definition handling | Dirkjan Ochtman | 2017-08-22 | 1 | -1/+43 |
| | |||||
* | Rename method call internals for clarity | Dirkjan Ochtman | 2017-08-22 | 1 | -2/+2 |
| | |||||
* | Allow separation of variable declaration and defintion | Dirkjan Ochtman | 2017-08-16 | 1 | -3/+11 |
| | |||||
* | Add support for simple variable definition statements | Dirkjan Ochtman | 2017-08-14 | 1 | -0/+12 |
| | |||||
* | Expand include node to template source during code generation | Dirkjan Ochtman | 2017-08-06 | 1 | -4/+2 |
| | |||||
* | Use one way of finding templates on the path | Dirkjan Ochtman | 2017-08-06 | 1 | -1/+2 |
| | |||||
* | Merge handling of trailing newline into get_template_source() | Dirkjan Ochtman | 2017-08-06 | 1 | -10/+4 |
| | |||||
* | Add test for panic on invalid blocks (see #27) | Dirkjan Ochtman | 2017-08-04 | 1 | -0/+5 |
| | |||||
* | Let parse() panic if template is not parsed completely (fixes #27) | Dirkjan Ochtman | 2017-08-04 | 1 | -1/+8 |
| | |||||
* | Handle parsing for blocks in one place | Dirkjan Ochtman | 2017-08-04 | 1 | -15/+14 |
| | |||||
* | Add support for include blocks (see #25) | Dirkjan Ochtman | 2017-08-04 | 1 | -0/+22 |
| | |||||
* | Merge changes | Dirkjan Ochtman | 2017-08-02 | 1 | -12/+21 |
|\ | |||||
| * | Add support for chained attributes (fixes #22) | Dirkjan Ochtman | 2017-05-26 | 1 | -12/+21 |
| | | |||||
* | | Fix edge cases in content literal parser (fixes #24) | Dirkjan Ochtman | 2017-08-02 | 1 | -11/+26 |
|/ | |||||
* | Hide askama_derive dependency inside askama (fixes #2) | Dirkjan Ochtman | 2017-03-06 | 1 | -0/+349 |
| | |||||
* | Move parser and generator code into askama crate | Dirkjan Ochtman | 2017-01-07 | 1 | -69/+0 |
| | |||||
* | Add parser and code generator support for Filter expressions | Dirkjan Ochtman | 2017-01-06 | 1 | -4/+30 |
| | |||||
* | Rename askama_codegen to askama_derive | Dirkjan Ochtman | 2017-01-03 | 1 | -0/+43 |
This appears to be best practice for crates using macros 1.1. |