From: Fabien Potencier Date: Sat, 26 Oct 2013 06:34:09 +0000 (+0200) Subject: removed whitespaces in docs X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=932f7fcb75a05b87376d4c24e92d3ca30ea7fb40;p=konrad%2Ftwig.git removed whitespaces in docs --- diff --git a/doc/filters/abs.rst b/doc/filters/abs.rst index 3a82f62..22fa59d 100644 --- a/doc/filters/abs.rst +++ b/doc/filters/abs.rst @@ -6,9 +6,9 @@ The ``abs`` filter returns the absolute value. .. code-block:: jinja {# number = -5 #} - + {{ number|abs }} - + {# outputs 5 #} .. note:: diff --git a/doc/filters/url_encode.rst b/doc/filters/url_encode.rst index b4f9a6c..7a35ed1 100644 --- a/doc/filters/url_encode.rst +++ b/doc/filters/url_encode.rst @@ -14,7 +14,7 @@ or an array as query string: {{ "string with spaces"|url_encode(true) }} {# outputs "string%20with%20spaces" #} - + {{ {'param': 'value', 'foo': 'bar'}|url_encode }} {# outputs "param=value&foo=bar" #}