阻止eclipse格式化程序删除HTML代码的某些有用部分

时间:2018-03-01 08:07:04

标签: html

<tr ng-repeat="rows in CalendarBean.weekList">
    <td ng-repeat="cellList in rows">
        <div id="{{cellList.fullDate}}" ng-click="onDateSelect(cellList.fullDate)" 
         class=" {{cellList.timeClass}} {{cellList.leaveFlag}}+{{cellList.holidayFlag}}" 
         style="border:{{cellList.borderColor}};  background-color: {{cellList.ColorCode}}" 
         align='center'>
            <div class="row">
                <span style="color: {{cellList.dateNumberColor}}" class="class1">
                  {{cellList.date}}
                </span>
            </div>
        </div>
    </td>
</tr>

我有这个代码。

background-color: {{cellList.ColorCode}}

当我在eclipse Luna中格式化我的代码时,这部分和一些关闭的第二个括号被删除了。有什么建议如何制止这个?

0 个答案:

没有答案