Comments
HTML comments use the standard <!-- --> syntax and can appear anywhere inside a fragment:
Comments are passed through to the rendered HTML output unchanged:
Inside elements
Comments can appear as children of any HTML element:
<ul>
<!-- items are filtered before rendering -->
<li for={{ item in published_items }}>{{ item.name }}</li>
</ul>
Multiline comments
Comments may span multiple lines: