added some references to the doc
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 25 Oct 2011 14:33:42 +0000 (16:33 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 25 Oct 2011 14:33:42 +0000 (16:33 +0200)
doc/filters/json_encode.rst
doc/filters/striptags.rst
doc/filters/url_encode.rst

index 24b479f..c7d19b3 100644 (file)
@@ -6,3 +6,9 @@ The ``json_encode`` filter returns the JSON representation of a string:
 .. code-block:: jinja
 
     {{ data|json_encode() }}
+
+.. note::
+
+    Internally, Twig uses the PHP `json_encode`_ function.
+
+.. _`json_encode`: http://php.net/json_encode
index 7a3d9dd..5ccca45 100644 (file)
@@ -10,7 +10,6 @@ by one space:
 
 .. note::
 
-    Internally, Twig uses the PHP `strip_tags`_ function to maintain index
-    association.
+    Internally, Twig uses the PHP `strip_tags`_ function.
 
 .. _`strip_tags`: http://php.net/strip_tags
index 17204dc..c141f3b 100644 (file)
@@ -6,3 +6,9 @@ The ``url_encode`` filter URL encodes a given string:
 .. code-block:: jinja
 
     {{ data|url_encode() }}
+
+.. note::
+
+    Internally, Twig uses the PHP `urlencode`_ function.
+
+.. _`urlencode`: http://php.net/urlencode