Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-09 | Fix handling of trailing whitespace characters | Guillaume Gomez | 1 | -0/+11 | |
2023-02-24 | Fix typos | René Kijewski | 1 | -11/+11 | |
2023-02-21 | Revert "derive: Make Config `'static`" | René Kijewski | 3 | -17/+20 | |
2023-01-30 | derive: refactor parser | René Kijewski | 4 | -0/+1999 | |
`parser.rs` was a single file containing almost 2000 lines. This PR split the file into multiple, smaller files. `Expr`, `Node`, and `Target` each get an own file. Each struct gets a `parse()` method that return `Result<Self>`, and every other detail is private to the file. This PR should make this essential part of Askama more easy to understand, and make future modifications easier. |