added a precedence example (refs #1057)
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 May 2013 08:03:10 +0000 (10:03 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 May 2013 08:03:10 +0000 (10:03 +0200)
doc/templates.rst

index b6857a5..a329c92 100644 (file)
@@ -558,7 +558,17 @@ even if you're not working with PHP you should feel comfortable with it.
     operators listed first: ``b-and``, ``b-xor``, ``b-or``, ``or``, ``and``,
     ``==``, ``!=``, ``<``, ``>``, ``>=``, ``<=``, ``in``, ``..``, ``+``,
     ``-``, ``~``, ``*``, ``/``, ``//``, ``%``, ``is``, ``**``, ``|``, ``[]``,
-    and ``.``.
+    and ``.``:
+
+    .. code-block:: jinja
+
+        {% set greeting = 'Hello' %}
+        {% set name = 'Fabien' %}
+
+        {{ greeting ~ name|lower }}   {# Hello fabien #}
+
+        {# use parenthesis to change precedence #}
+        {{ (greeting ~ name)|lower }} {# hello fabien #}
 
 Literals
 ~~~~~~~~