Could the comment tag be simplified to something like {! !} or {# #}.
The current convention is a bit bulky for my taste.
{% comment %}
{% if 1 %}{% endif %}
{% endcomment %}
could be simplified to...
{! {% if 1 %}{% endif %} !}
or
{% comment %} Short comment about following code {% endcomment %}
could be...
{! Short comment about following code !}
What do you guys think?
