In my Mustache template, I would like to comment on a couple of lines, but I cannot do this. I am still getting comments displayed in HTML. What is the correct way to add comments? Can anyone help me sort this out?
here is my code:
<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>
source share