fixed CS in docs
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Oct 2013 06:29:21 +0000 (08:29 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Oct 2013 06:29:21 +0000 (08:29 +0200)
23 files changed:
doc/filters/batch.rst
doc/filters/convert_encoding.rst
doc/filters/date.rst
doc/filters/date_modify.rst
doc/filters/default.rst
doc/filters/escape.rst
doc/filters/join.rst
doc/filters/json_encode.rst
doc/filters/length.rst
doc/filters/number_format.rst
doc/filters/replace.rst
doc/filters/reverse.rst
doc/filters/slice.rst
doc/filters/split.rst
doc/filters/trim.rst
doc/functions/cycle.rst
doc/functions/date.rst
doc/functions/dump.rst
doc/functions/include.rst
doc/functions/random.rst
doc/functions/range.rst
doc/functions/template_from_string.rst
doc/templates.rst

index 4366b57..b0b9964 100644 (file)
@@ -14,11 +14,11 @@ missing items:
 
     <table>
     {% for row in items|batch(3, 'No item') %}
-      <tr>
-      {% for column in row %}
-        <td>{{ column }}</td>
-      {% endfor %}
-      </tr>
+        <tr>
+            {% for column in row %}
+                <td>{{ column }}</td>
+            {% endfor %}
+        </tr>
     {% endfor %}
     </table>
 
@@ -27,19 +27,19 @@ The above example will be rendered as:
 .. code-block:: jinja
 
     <table>
-      <tr>
-          <td>a</td>
-          <td>b</td>
-          <td>c</td>
+        <tr>
+            <td>a</td>
+            <td>b</td>
+            <td>c</td>
         </tr>
-      <tr>
-          <td>d</td>
-          <td>e</td>
-          <td>f</td>
+        <tr>
+            <td>d</td>
+            <td>e</td>
+            <td>f</td>
         </tr>
-      <tr>
-          <td>g</td>
-          <td>No item</td>
-          <td>No item</td>
+        <tr>
+            <td>g</td>
+            <td>No item</td>
+            <td>No item</td>
         </tr>
     </table>
index 1b0eb60..c417e12 100644 (file)
@@ -21,8 +21,8 @@ is the input charset:
 Arguments
 ---------
 
- * ``from``: The input charset
- * ``to``:   The output charset
+* ``from``: The input charset
+* ``to``:   The output charset
 
 .. _`iconv`:    http://php.net/iconv
 .. _`mbstring`: http://php.net/mbstring
index 1b40913..c86d42b 100644 (file)
@@ -18,7 +18,7 @@ The ``date`` filter formats a date to a given format:
 .. code-block:: jinja
 
     {{ post.published_at|date("m/d/Y") }}
-    
+
 The format specifier is the same as supported by `date`_,
 except when the filtered data is of type `DateInterval`_, when the format must conform to
 `DateInterval::format`_ instead.
@@ -84,8 +84,8 @@ The default timezone can also be set globally by calling ``setTimezone()``:
 Arguments
 ---------
 
- * ``format``:   The date format
- * ``timezone``: The date timezone
+* ``format``:   The date format
+* ``timezone``: The date timezone
 
 .. _`strtotime`:            http://www.php.net/strtotime
 .. _`DateTime`:             http://www.php.net/DateTime
index 6a5c73d..add40b5 100644 (file)
@@ -17,7 +17,7 @@ it with the :doc:`date<date>` filter for formatting.
 Arguments
 ---------
 
- * ``modifier``: The modifier
+* ``modifier``: The modifier
 
 .. _`strtotime`: http://www.php.net/strtotime
 .. _`DateTime`:  http://www.php.net/DateTime
index 46ed963..641ac6e 100644 (file)
@@ -30,4 +30,4 @@ undefined:
 Arguments
 ---------
 
- * ``default``: The default value
+* ``default``: The default value
index ad441de..fc9771a 100644 (file)
@@ -110,7 +110,7 @@ string to escape, and the charset.
 Arguments
 ---------
 
- * ``strategy``: The escaping strategy
- * ``charset``:  The string charset
+* ``strategy``: The escaping strategy
+* ``charset``:  The string charset
 
 .. _`htmlspecialchars`: http://php.net/htmlspecialchars
index f495242..be10b86 100644 (file)
@@ -20,4 +20,4 @@ define it with the optional first parameter:
 Arguments
 ---------
 
- * ``glue``: The separator
+* ``glue``: The separator
index 4a7d64e..9821b11 100644 (file)
@@ -14,8 +14,8 @@ The ``json_encode`` filter returns the JSON representation of a string:
 Arguments
 ---------
 
- * ``options``: A bitmask of `json_encode options`_ (``{{
-   data|json_encode(constant('JSON_PRETTY_PRINT')) }}``)
+* ``options``: A bitmask of `json_encode options`_ (``{{
+  data|json_encode(constant('JSON_PRETTY_PRINT')) }}``)
 
 .. _`json_encode`: http://php.net/json_encode
 .. _`json_encode options`: http://www.php.net/manual/en/json.constants.php
index f79b9bd..5e0f73a 100644 (file)
@@ -9,4 +9,3 @@ the length of a string:
     {% if users|length > 10 %}
         ...
     {% endif %}
-
index 7434c53..3e60691 100644 (file)
@@ -21,9 +21,9 @@ separator using the additional arguments:
 If no formatting options are provided then Twig will use the default formatting
 options of:
 
-- 0 decimal places.
-- ``.`` as the decimal point.
-- ``,`` as the thousands separator.
+* 0 decimal places.
+* ``.`` as the decimal point.
+* ``,`` as the thousands separator.
 
 These defaults can be easily changed through the core extension:
 
@@ -38,8 +38,8 @@ additional parameters.
 Arguments
 ---------
 
- * ``decimal``:       The number of decimal points to display
- * ``decimal_point``: The character(s) to use for the decimal point
- * ``thousand_sep``:   The character(s) to use for the thousands separator
+* ``decimal``:       The number of decimal points to display
+* ``decimal_point``: The character(s) to use for the decimal point
+* ``thousand_sep``:   The character(s) to use for the thousands separator
 
 .. _`number_format`: http://php.net/number_format
index e961f23..1ab3b38 100644 (file)
@@ -14,6 +14,6 @@ The ``replace`` filter formats a given string by replacing the placeholders
 Arguments
 ---------
 
- * ``replace_pairs``: The placeholder values
+* ``replace_pairs``: The placeholder values
 
 .. seealso:: :doc:`format<format>`
index 752192b..76fd2c1 100644 (file)
@@ -42,6 +42,6 @@ The ``reverse`` filter reverses a sequence, a mapping, or a string:
 Arguments
 ---------
 
- * ``preserve_keys``: Preserve keys when reversing a mapping or a sequence.
+* ``preserve_keys``: Preserve keys when reversing a mapping or a sequence.
 
 .. _`Traversable`: http://php.net/Traversable
index dbd5db3..c76c61c 100644 (file)
@@ -61,9 +61,9 @@ up until the end of the variable.
 Arguments
 ---------
 
- * ``start``:         The start of the slice
- * ``length``:        The size of the slice
- * ``preserve_keys``: Whether to preserve key or not (when the input is an array)
+* ``start``:         The start of the slice
+* ``length``:        The size of the slice
+* ``preserve_keys``: Whether to preserve key or not (when the input is an array)
 
 .. _`Traversable`: http://php.net/manual/en/class.traversable.php
 .. _`array_slice`: http://php.net/array_slice
index 7cd2ca5..3db8141 100644 (file)
@@ -46,8 +46,8 @@ chunks. Length is set by the ``limit`` argument (one character by default).
 Arguments
 ---------
 
- * ``delimiter``: The delimiter
- * ``limit``:     The limit argument
+* ``delimiter``: The delimiter
+* ``limit``:     The limit argument
 
 .. _`explode`:   http://php.net/explode
 .. _`str_split`: http://php.net/str_split
index f38afd5..0c5b32e 100644 (file)
@@ -24,6 +24,6 @@ and end of a string:
 Arguments
 ---------
 
- * ``character_mask``: The characters to strip
+* ``character_mask``: The characters to strip
 
 .. _`trim`: http://php.net/trim
index 0015cae..94f7008 100644 (file)
@@ -22,4 +22,4 @@ The array can contain any number of values:
 Arguments
 ---------
 
- * ``position``: The cycle position
+* ``position``: The cycle position
index f1c9481..9442c39 100644 (file)
@@ -46,7 +46,7 @@ If no argument is passed, the function returns the current date:
 Arguments
 ---------
 
- * ``date``:     The date
- * ``timezone``: The timezone
+* ``date``:     The date
+* ``timezone``: The timezone
 
 .. _`date`: http://www.php.net/date
index 1500b0f..54f8d4e 100644 (file)
@@ -63,7 +63,7 @@ dumped:
 Arguments
 ---------
 
- * ``context``: The context to dump
+* ``context``: The context to dump
 
 .. _`XDebug`:   http://xdebug.org/docs/display
 .. _`var_dump`: http://php.net/var_dump
index eaddfe6..8feb0f1 100644 (file)
@@ -73,8 +73,8 @@ sandboxing it:
 Arguments
 ---------
 
- * ``template``:       The template to render
- * ``variables``:      The variables to pass to the template
- * ``with_context``:   Whether to pass the current context variables or not
- * ``ignore_missing``: Whether to ignore missing templates or not
- * ``sandboxed``:      Whether to sandbox the template or not
+* ``template``:       The template to render
+* ``variables``:      The variables to pass to the template
+* ``with_context``:   Whether to pass the current context variables or not
+* ``ignore_missing``: Whether to ignore missing templates or not
+* ``sandboxed``:      Whether to sandbox the template or not
index a5a916b..fcca661 100644 (file)
@@ -24,6 +24,6 @@ parameter type:
 Arguments
 ---------
 
- * ``values``: The values
+* ``values``: The values
 
 .. _`mt_rand`: http://php.net/mt_rand
index b1fa547..dac0e9b 100644 (file)
@@ -38,8 +38,8 @@ function (with a step of 1):
 Arguments
 ---------
 
- * ``low``:  The first value of the sequence.
- * ``high``: The highest possible value of the sequence.
- * ``step``: The increment between elements of the sequence.
+* ``low``:  The first value of the sequence.
+* ``high``: The highest possible value of the sequence.
+* ``step``: The increment between elements of the sequence.
 
 .. _`range`: http://php.net/range
index f21d91f..95d9256 100644 (file)
@@ -29,4 +29,4 @@ The ``template_from_string`` function loads a template from a string:
 Arguments
 ---------
 
- * ``template``: The template
+* ``template``: The template
index a191072..03377ec 100644 (file)
@@ -167,7 +167,7 @@ To apply a filter on a section of code, wrap it with the
 .. code-block:: jinja
 
     {% filter upper %}
-      This text becomes uppercase
+        This text becomes uppercase
     {% endfilter %}
 
 Go to the :doc:`filters<filters/index>` page to learn more about the built-in