aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to warp 0.3Libravatar Paolo Barbolini2021-01-191-4/+4
|
* Add no_std support to askama_escapeLibravatar Wim Looman2021-01-151-3/+10
|
* Added constants testLibravatar vallentin2021-01-131-0/+30
|
* Fixed constants (fixes #291)Libravatar vallentin2021-01-131-2/+5
|
* Added urlencode filter to bookLibravatar vallentin2021-01-061-5/+5
|
* Added missing punctuation and backticksLibravatar vallentin2021-01-061-14/+16
|
* Added abs filter to bookLibravatar vallentin2021-01-061-0/+14
|
* Improved comment parsing testLibravatar vallentin2021-01-061-0/+18
|
* Fixed comment parsingLibravatar vallentin2021-01-061-7/+1
|
* Added copy literals related test caseLibravatar vallentin2021-01-051-0/+12
|
* Removed implicit borrowing of literals, calls, and more (fixes #404)Libravatar vallentin2021-01-056-59/+109
|
* Added numbers parser testLibravatar vallentin2021-01-051-0/+13
|
* Fixed parsing floatsLibravatar vallentin2021-01-051-2/+4
|
* Improved filter parsing testLibravatar vallentin2021-01-051-1/+35
|
* Fixed precedence of filters and unary operators (fixes #424)Libravatar vallentin2021-01-051-3/+3
|
* Changed multi-line commands to single-line commandsLibravatar vallentin2021-01-011-21/+14
|
* Resolved Clippy lintsLibravatar vallentin2021-01-011-10/+10
|
* Updated book to include tojson aliasLibravatar vallentin2020-12-301-1/+3
|
* Added tojson aliasLibravatar vallentin2020-12-301-1/+5
|
* Fixed yaml filter generationLibravatar vallentin2020-12-291-1/+1
|
* Refactored into filters constantLibravatar vallentin2020-12-291-8/+6
|
* Added error to hint enabling serde featuresLibravatar vallentin2020-12-291-0/+9
|
* Updated book to be on par with readmeLibravatar vallentin2020-12-262-7/+1
|
* Updated book to include let shadowLibravatar vallentin2020-12-251-1/+11
|
* Added let shadow testLibravatar vallentin2020-12-252-0/+43
|
* Added support for redefining variables (fixes #329)Libravatar vallentin2020-12-251-5/+34
|
* Improved implicit borrowing and changed to resolve Askama variables at ↵Libravatar vallentin2020-12-211-49/+127
| | | | compile time
* Remove an explicit lifetime to fix a clippy warningLibravatar Randati2020-12-211-1/+1
|
* Disable askama's default features in web framework cratesLibravatar Randati2020-12-216-6/+6
| | | | | | Without disabling these default features, askama's default features get automatically enabled when web framework specific crates are included in the project.
* Updated book to include nested commentsLibravatar vallentin2020-12-181-1/+10
|
* Added comment parser testsLibravatar vallentin2020-12-181-0/+17
|
* Added support for nested commentsLibravatar vallentin2020-12-181-4/+22
|
* Some README updates (fixes #406)Libravatar Dirkjan Ochtman2020-12-181-5/+1
|
* Bump version for askama_gothamLibravatar Dirkjan Ochtman2020-12-161-1/+1
|
* Updated book to include set aliasLibravatar vallentin2020-12-161-1/+3
|
* Added set alias for letLibravatar vallentin2020-12-161-1/+1
|
* Added more loop testsLibravatar vallentin2020-12-161-0/+36
|
* Improved template loop generation (fixes #107, #333)Libravatar vallentin2020-12-161-1/+19
|
* Merge pull request #400 from djc/localLibravatar Dirkjan Ochtman2020-12-154-8/+8
|\ | | | | Sync local repo with GitHub
| * Bump version for askama_sharedLibravatar Dirkjan Ochtman2020-11-191-1/+1
| |
| * Adapt to changed mendes APILibravatar Dirkjan Ochtman2020-11-191-2/+2
| |
| * Bump versions to fix semver problemLibravatar Dirkjan Ochtman2020-11-173-6/+6
| |
| * Bump version numbers for askama and askama_deriveLibravatar Dirkjan Ochtman2020-11-172-5/+5
| |
* | Fixed whitespace issue when generating match (#399)Libravatar Christian Vallentin2020-12-127-53/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed #397 * Updated parser to ignore whitespace between match and when * Updated test cases * Updated Python script to generate match ws tests * Added match ws tests * Resolved rustfmt lint
* | Fixed whitespace issue when generating if statement (#394)Libravatar Christian Vallentin2020-12-033-5/+281
| | | | | | * Fixed #377
* | Allow paths to start with `::` (#393)Libravatar Christian Vallentin2020-12-022-4/+34
| |
* | Improved if statement generation to avoid issues with implicit borrows (#392)Libravatar Christian Vallentin2020-12-013-0/+72
| | | | | | | | | | | | | | * Changed to automatically coerce to bool * Added new test case * Updated test case to include else if
* | Fixed parsing precedence and associativity (#391)Libravatar Christian Vallentin2020-12-011-33/+173
| |
* | Fixed implicit borrow of expressions (#390)Libravatar Christian Vallentin2020-12-014-2/+32
| |
* | Disable nom default featuresLibravatar Konrad Borowski2020-11-211-3/+1
| | | | | | | | | | This removes unnecessary lexical feature reducing amount of crates Askama depends on.