fix example autoescape for javascript

{% autoescape js %} triggers an exception "An escaping strategy must be a string or a Boolean in .."
This commit is contained in:
Toni Uebernickel
2012-07-17 17:52:07 +03:00
parent d456640451
commit 0869d155db
+1 -1
View File
@@ -328,7 +328,7 @@ you have some dynamic JavaScript files thanks to the ``autoescape`` tag:
.. code-block:: jinja
{% autoescape js %}
{% autoescape 'js' %}
... some JS ...
{% endautoescape %}