From a079a869c6c6c6b9bd92d75d26c523622e62952e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=BCll=C3=BCp=2E?= Date: Wed, 25 Jun 2025 10:32:42 +0200 Subject: [PATCH] Update insert_tag.md Added a third example for variable usage --- docs/dev/reference/twig/functions/insert_tag.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/dev/reference/twig/functions/insert_tag.md b/docs/dev/reference/twig/functions/insert_tag.md index ecc37b224..1265aeafd 100644 --- a/docs/dev/reference/twig/functions/insert_tag.md +++ b/docs/dev/reference/twig/functions/insert_tag.md @@ -14,6 +14,9 @@ template. This can be useful for executing specific functionalities that are onl {# Insert an article #}

{{ insert_tag('insert_article::123')|raw }}

+ +{# Insert the value of a variable 'email' in the email insert tag. #} +{{ insert_tag('email::'~ email)|raw }} ``` ## Arguments