{% autoescape on }
{{ var|safe }} {# var won't be escaped #}
{% autoescape off %}
+
+Extensions
+----------
+
+Twig can be easily extended. If you are looking for new tags or filters, have
+a look at the Twig official extension repository:
+http://github.com/fabpot/Twig-extensions.
Most of the time, it is useful to create a single extension for your project,
to host all the specific tags and filters you want to add to Twig.
+>**NOTE**
+>Before writing your own extensions, have a look at the Twig official extension
+>repository: http://github.com/fabpot/Twig-extensions.
+
Anatomy of an Extension
-----------------------