From 94a8655918d7a49f6cfd573e1f274658f874e8c9 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 27 Mar 2015 09:52:42 +0000 Subject: [PATCH] As per twigphp/Twig#472, automatic escaping is not yet available --- book/templating.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/book/templating.rst b/book/templating.rst index 95dedb298fc..a77bde19fce 100644 --- a/book/templating.rst +++ b/book/templating.rst @@ -135,10 +135,10 @@ Throughout this chapter, template examples will be shown in both Twig and PHP. web designers everywhere. Twig can also do things that PHP can't, such as whitespace control, - sandboxing, automatic and contextual output escaping, and the inclusion of - custom functions and filters that only affect templates. Twig contains - little features that make writing templates easier and more concise. Take - the following example, which combines a loop with a logical ``if`` + sandboxing, automatic HTML escaping, manual contextual output escaping, + and the inclusion of custom functions and filters that only affect templates. + Twig contains little features that make writing templates easier and more concise. + Take the following example, which combines a loop with a logical ``if`` statement: .. code-block:: html+jinja