Merge pull request #364 from Kijewski/pr-twig

docs: update twig's URL
This commit is contained in:
Guillaume Gomez 2025-03-11 23:08:58 +01:00 committed by GitHub
commit 70531eb827
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@
//! **expressions**, which get replaced with content while being rendered, and
//! **tags**, which control the template's logic.
//! The template syntax is very similar to [Jinja](http://jinja.pocoo.org/),
//! as well as Jinja-derivatives like [Twig](http://twig.sensiolabs.org/) or
//! as well as Jinja-derivatives like [Twig](https://twig.symfony.com/) or
//! [Tera](https://github.com/Keats/tera).
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

View File

@ -9,7 +9,7 @@ A template consists of **text contents**, which are passed through as-is,
**expressions**, which get replaced with content while being rendered, and
**tags**, which control the template's logic.
The [template syntax](template_syntax.md) is very similar to [Jinja](http://jinja.pocoo.org/),
as well as Jinja-derivatives like [Twig](http://twig.sensiolabs.org/) or
as well as Jinja-derivatives like [Twig](https://twig.symfony.com/) or
[Tera](https://github.com/Keats/tera).
```rust