在我的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 :(得分:11)
小胡子documentation建议使用以下内容进行评论:
{{! blah }}
我认为在你的情况下你必须使用
{{!-- blah --}}
而不是
using System;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
{
int count = 0;
var b = Regex.Replace("gooodbaaad", "[oa]", m=> { count++; return "x"; });
Console.WriteLine(b);
Console.WriteLine(count);
}
}
答案 1 :(得分:1)
您正试图在其中也包含html的胡须模板中添加注释,因此实际上您必须在胡须代码所在的位置添加胡须注释,并在html代码所在的位置添加html注释。
。