답변:
최신 버전의 핸들 바에는 블록 주석 지원이 있습니다.
{{!-- {{commented expressions}} --}}
https://github.com/wycats/handlebars.js/commit/a927a9b0adc39660f0794b9b210c9db2f7ddecd9
핸들 바 템플릿 파일에서이 방법을 사용하십시오.
<div class="entry">
{{!-- only output author name if an author exists --}}
{{#if author}}
<h1>{{author.firstName}} {{author.lastName}}</h1>
{{/if}}
</div>
주석은 결과 출력에 포함되지 않습니다. 주석을 표시하려면 HTML 주석을 사용하십시오.
<div class="entry">
{{! This comment will not be in the output }}
<!-- This comment will be in the output -->
</div>