Rollup merge of #113115 - tshepang:patch-5, r=est31

we are migrating to askama

see https://github.com/rust-lang/rust/issues/108868
This commit is contained in:
Matthias Krüger 2023-08-16 20:10:37 +02:00 committed by GitHub
commit 52d69476a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ Askama templates support quite sophisticated control flow. To keep our templates
simple and understandable, we use only a subset: `if` and `for`. In particular
we avoid [assignments in the template logic][assignments] and [Askama
macros][macros]. This also may make things easier if we switch to a different
Jinja-style template system, like Askama, in the future.
Jinja-style template system in the future.
[assignments]: https://djc.github.io/askama/template_syntax.html#assignments
[macros]: https://djc.github.io/askama/template_syntax.html#macros