Ensure macro definitions are properly parsed

This commit is contained in:
Kevin Brown 2020-05-08 17:25:57 -04:00 committed by Kevin
parent 6a80dfd6fb
commit c098a6089d

View File

@ -31,3 +31,7 @@ across lines #}
The value will increase even more!
{% endif %}
{% endfor %}
{% macro textarea(name, value='', rows=10, cols=40) %}
<textarea name="{{ name }}" rows="{{ rows }}" cols="{{ cols
}}">{{ value|e }}</textarea>
{% endmacro %}