Is there a way to put comments (single and multiline) in ECO templates such that they do not appear in the rendered output?
For example, Django templates let you do this on a single line:
{# greeting #}hello
or on multiple lines:
<p>Rendered text with {{ pub_date|date:"c" }}</p>
{% comment %}
<p>Commented out text with {{ create_date|date:"c" }}</p>
{% endcomment %}