我创建了一些基本的玉文件:
doctype
html
body.
<div>blah blah</div>
<div>blah blah</div>
.container
但是玉并没有将.container视为div。我知道我可以使用管道语法,但如果我想使用点?
有没有办法取消点?
答案 0 :(得分:0)
它被称为Tag Interpolation,其中的所有内容都被假定为纯HTML。然后使用#[]
插入Jade。
相反,您可以直接使用纯HTML
.body
<div>blah blah</div>
<div>blah blah</div>
.container
<div>This is inside the .container class div</div>
将呈现
<div class="body">
<div>blah blah</div>
<div>blah blah</div>
<div class="container"><div>This is inside the .container class div</div></div>
</div>