2013-10-22 12 views
5

私のMustacheテンプレートでは、いくつかの行についてコメントしたいと思いますが、できません。私はまだコメントをHTMLで表示しています。コメントを追加する正しい方法は何ですか?誰も私がこれを整理するのを助けることができますか?ここひげそりテンプレートにコメントを追加するには?

は私のコードです:

<script type="text/html" id="inspector-splitViewBase"> 
    <div class="inspector-split-view-container flex-1 flex-fill flex-down"> 
     <header class='split-view-inspector-header'> 
      <div class="view-title">Source Assets</div> 
      {{!-- <div class="actions"> commented 
       <span class="label">Actions</span> 
       <span class="gear"></span> 
      </div> --}} - comment is not working 
     </header> 
     <div class='search-container'> 
      <span class="search-icon"></span> 
      <input type="text" value="" class="inspector-search" /> 
     </div> 
     <div class="source-assets-list-container flex-1"></div> 
     <footer></footer> 
    </div> 
</script> 
+0

あなたは{{! }}複数行コメントの代わりに? – rivarolle

+0

私は試しましたが、動作しません。 – 3gwebtrain

+0

HTML要素全体をコメントすることができ、表示されません(を使用) –

答えて

10

口ひげdocumentationコメントを次のように使用することを提案:私はあなたのケースでは、あなたが代わりに

{{! blah }} 

を使用していたことを前提としてい

Comments begin with a bang and are ignored. The following template: 
    <h1>Today{{! ignore me }}.</h1> 

Will render as follows:  
    <h1>Today.</h1> 

Comments may contain newlines. 

{{!-- blah --}} 
関連する問題