[template_from_string]Fixed typo

This commit is contained in:
Mario A. Alvarez Garcia
2012-11-07 14:59:42 -05:00
parent c248887296
commit cc65c8843a
+2 -2
View File
@@ -8,8 +8,8 @@ The ``template_from_string`` function loads a template from a string:
.. code-block:: jinja
{% include template_from_string("Hello {{ name }}") }}
{% include template_from_string(page.template) }}
{% include template_from_string("Hello {{ name }}") %}
{% include template_from_string(page.template) %}
.. note::