我有一个html文件,我想将其转换为Jade文件。 唯一的问题我不知道如何或是否可以在翡翠中使用把手。
示例
<div class="container">
<div class="row">
<h1>{{title}}<small> <br /> {{description}}</small></h1>
</div>
</div>
我试过这样的事情
.container<div class="row"><h1>{{title}}<small> <br /> {{description}}</small></h1></div>
似乎无法正常工作。
答案 0 :(得分:0)
您仍然在模板中使用常规HTML标记 - 这是不允许的。用玉石写这个,看起来应该是:
.container
.row
h1 {{title}}
small
br
{{description}}
虽然,我没有得到h1 > small > br
部分,但我是这样做的:
.container
.row
h1 {{title}}
small {{description}}