added a note about the twig extensions repository in the doc
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Mar 2010 11:09:01 +0000 (12:09 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Mar 2010 11:09:01 +0000 (12:09 +0100)
doc/02-Twig-for-Template-Designers.markdown
doc/04-Extending-Twig.markdown

index 00becdc..7f780c2 100644 (file)
@@ -1063,3 +1063,10 @@ with automatic escaping enabled this variable will not be escaped.
     {% 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.
index 60bce0c..669c51c 100644 (file)
@@ -9,6 +9,10 @@ support for internationalization.
 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
 -----------------------