When I use jsrender template engine, I want to put some comment in code, but I couldn't find tag for comments.
I know that I can use html comments, but I don't want those comments to be rendered on html at all, so <!-- -->
is out of option.
So, what I want to have is:
<script id="row-template" type="text/x-jsrender">
{{// some comment that will not be rendered}}
{{if #data[0]}}
<tr>
{{for #data tmpl="#some-template"/}}
</tr>
{{/if}}
</script>