Christian Vallentin
Christian Vallentin
Alright, I'll make a PR for it. I have all the code ready anyways, just need to update the book
I'm just assuming @allan2 is busy or overlooked the PR :) I already verified this locally, so in my opinion it is ready to be merged.
Duplicate of #383 I explained why it occurs in that issue https://github.com/djc/askama/issues/383#issuecomment-727597503. In short, it has to do with how paths are resolved. Your path is actually `templates/../../pages/contact.html`, so if...
@djc Yes, I'll look into it. Since I'm already documenting other stuff
So I was thinking more about this. We could also specialize this case, where the template path starts with `../`. So when resolving the template path, say the `path` is...
Fine with me. My contributions have been sporadic lately, due to being busy. So another set of talented hands, is definitely welcome!
The reason adding 0 works, but comparing doesn't is because Rust [implements `Add` for references](https://doc.rust-lang.org/std/ops/trait.Add.html#implementors) as well, out of convenience. The same is however not true for [`PartialEq`](https://doc.rust-lang.org/std/cmp/trait.PartialEq.html#implementors). So when...
@martinellison I'm not entirely sure if I interpret what you mean correctly, so feel free to correct me. Are you asking how to use `match` and `when` with tuples, i.e....
Personally, I would like an option to disable the lenses. When using `rstest`, the following can be a bit distracting: 
The CI actually is [outputting all the warnings]. The issue is that only the `cargo doc` check includes `-D warnings`. [outputting all the warnings]: https://github.com/pacak/bpaf/actions/runs/8335572865/job/22811300574#step:6:25 https://github.com/pacak/bpaf/blob/b7c0b16831ee816daa6e9b0f5c59d3ca489f26dd/.github/workflows/check-and-lint.yaml#L41-L65 In short, the following...