From 932f7fcb75a05b87376d4c24e92d3ca30ea7fb40 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 26 Oct 2013 08:34:09 +0200 Subject: [PATCH] removed whitespaces in docs --- doc/filters/abs.rst | 4 ++-- doc/filters/url_encode.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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" #} -- 1.7.2.5