所以,我有一个相当简单的车把模板,它的元素看起来像这样:
<div>
{{include_text}}
</div>
我正在尝试插入一些 html,例如:
<table>
....lots of table stuff
</table>
当我将表格与模板一起使用时,我得到的结果如下所示:
<div>
<table>
... lots of table stuff
</table>
</div>
而且我要:
<div>
<table>
....lots of table stuff
</table>
</div>
这可能吗?如果是这样,怎么做?