aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/try.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement error propagation expression: `?` (#590)Libravatar René Kijewski2022-01-281-0/+69
This change allows using the operator `?` in askama expressions. It works like the same operator in Rust: if a `Result` is `Ok`, it is unwrapped. If it is an error, then the `render()` method fails with this error value.