jsrenderテンプレートエンジンを使用する場合、コードにコメントを入れたいのですが、コメントのタグが見つかりませんでした。
htmlコメントを使用できることは知っていますが、それらのコメントをhtmlにレンダリングしたくないので<!-- -->
、オプションではありません。
だから、私が欲しいのは:
<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>