在Notepad ++中,当使用Ember(和Handlebars)时,HTML写在<script>
-
<script type="text/x-handlebars">
//Code
</script>
着色似乎很奇怪 - 类属性在.js
文件中突出显示,标签有时显示为黑色,有时显示为蓝色(就像它们应该的那样)我还没弄清楚为什么
是否可以在<script>
标签内关闭着色?
编辑:JS格式一直持续到第一个结束标记 -
<script type="text/x-handlebars">
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<table class="table">
<thead>
<tr>
<th>//This tag and above are black
Recent Posts
</th>//This tag and below are blue
</tr>
//.....
</script>