有沒有方法可以將ECO templates中的註釋(單行和多行)置於不顯示在渲染輸出中的位置?嵌入式Coffeescript(ECO)模板中的註釋
例如,Django模板讓你這樣做對single line:
{# greeting #}hello
<p>Rendered text with {{ pub_date|date:"c" }}</p>
{% comment %}
<p>Commented out text with {{ create_date|date:"c" }}</p>
{% endcomment %}