fixed formatting in the docs
authorFabien Potencier <fabien.potencier@gmail.com>
Fri, 10 Oct 2014 23:31:53 +0000 (01:31 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Fri, 10 Oct 2014 23:31:53 +0000 (01:31 +0200)
14 files changed:
doc/filters/batch.rst
doc/filters/first.rst
doc/filters/last.rst
doc/filters/nl2br.rst
doc/filters/number_format.rst
doc/filters/slice.rst
doc/filters/split.rst
doc/filters/trim.rst
doc/functions/dump.rst
doc/functions/include.rst
doc/functions/random.rst
doc/functions/source.rst
doc/functions/template_from_string.rst
doc/tags/do.rst

index b0b9964..30dd782 100644 (file)
@@ -2,7 +2,7 @@
 =========
 
 .. versionadded:: 1.12.3
-    The batch filter was added in Twig 1.12.3.
+    The ``batch`` filter was added in Twig 1.12.3.
 
 The ``batch`` filter "batches" items by returning a list of lists with the
 given number of items. If you provide a second parameter, it is used to fill
index 4295e83..674c1f9 100644 (file)
@@ -2,7 +2,7 @@
 =========
 
 .. versionadded:: 1.12.2
-    The first filter was added in Twig 1.12.2.
+    The ``first`` filter was added in Twig 1.12.2.
 
 The ``first`` filter returns the first "element" of a sequence, a mapping, or
 a string:
index 723c0b5..345b657 100644 (file)
@@ -2,7 +2,7 @@
 ========
 
 .. versionadded:: 1.12.2
-    The last filter was added in Twig 1.12.2.
+    The ``last`` filter was added in Twig 1.12.2.
 
 The ``last`` filter returns the last "element" of a sequence, a mapping, or
 a string:
index 694c672..5c923e1 100644 (file)
@@ -2,7 +2,7 @@
 =========
 
 .. versionadded:: 1.5
-    The nl2br filter was added in Twig 1.5.
+    The ``nl2br`` filter was added in Twig 1.5.
 
 The ``nl2br`` filter inserts HTML line breaks before all newlines in a string:
 
index 3e60691..3114e84 100644 (file)
@@ -2,7 +2,7 @@
 =================
 
 .. versionadded:: 1.5
-    The number_format filter was added in Twig 1.5
+    The ``number_format`` filter was added in Twig 1.5
 
 The ``number_format`` filter formats numbers.  It is a wrapper around PHP's
 `number_format`_ function:
index afc8300..a856664 100644 (file)
@@ -2,7 +2,7 @@
 ===========
 
 .. versionadded:: 1.6
-    The slice filter was added in Twig 1.6.
+    The ``slice`` filter was added in Twig 1.6.
 
 The ``slice`` filter extracts a slice of a sequence, a mapping, or a string:
 
index 5c70b46..bbc6d79 100644 (file)
@@ -2,7 +2,7 @@
 =========
 
 .. versionadded:: 1.10.3
-    The split filter was added in Twig 1.10.3.
+    The ``split`` filter was added in Twig 1.10.3.
 
 The ``split`` filter splits a string by the given delimiter and returns a list
 of strings:
index 0c5b32e..4ddb208 100644 (file)
@@ -2,7 +2,7 @@
 ========
 
 .. versionadded:: 1.6.2
-    The trim filter was added in Twig 1.6.2.
+    The ``trim`` filter was added in Twig 1.6.2.
 
 The ``trim`` filter strips whitespace (or other characters) from the beginning
 and end of a string:
index 54f8d4e..a231f08 100644 (file)
@@ -2,7 +2,7 @@
 ========
 
 .. versionadded:: 1.5
-    The dump function was added in Twig 1.5.
+    The ``dump`` function was added in Twig 1.5.
 
 The ``dump`` function dumps information about a template variable. This is
 mostly useful to debug a template that does not behave as expected by
index 8feb0f1..33bd56d 100644 (file)
@@ -2,7 +2,7 @@
 ===========
 
 .. versionadded:: 1.12
-    The include function was added in Twig 1.12.
+    The ``include`` function was added in Twig 1.12.
 
 The ``include`` function returns the rendered content of a template:
 
index acbffe5..168e74f 100644 (file)
@@ -2,7 +2,7 @@
 ==========
 
 .. versionadded:: 1.5
-    The random function was added in Twig 1.5.
+    The ``random`` function was added in Twig 1.5.
 
 .. versionadded:: 1.6
     String and integer handling was added in Twig 1.6.
index defa5fb..8ff39c2 100644 (file)
@@ -2,7 +2,7 @@
 ==========
 
 .. versionadded:: 1.15
-    The source function was added in Twig 1.15.
+    The ``source`` function was added in Twig 1.15.
 
 The ``source`` function returns the content of a template without rendering it:
 
index 95d9256..ce6a60d 100644 (file)
@@ -2,7 +2,7 @@
 ========================
 
 .. versionadded:: 1.11
-    The template_from_string function was added in Twig 1.11.
+    The ``template_from_string`` function was added in Twig 1.11.
 
 The ``template_from_string`` function loads a template from a string:
 
index eca63d0..1c344e3 100644 (file)
@@ -2,7 +2,7 @@
 ======
 
 .. versionadded:: 1.5
-    The do tag was added in Twig 1.5.
+    The ``do`` tag was added in Twig 1.5.
 
 The ``do`` tag works exactly like the regular variable expression (``{{ ...
 }}``) just that it doesn't print anything: