我希望在部分,注释和标签之间有一个空行。我正在使用jade输出我的html而不能输出空行。这就是我想要的。
<div>
<div class='another'>
</div>
</div>
<div>
I want a line just like above
</div>
答案 0 :(得分:2)
这些选项对我有用:
=
operator(输入已评估的代码段),其中包含换行符* What went wrong:
A problem was found with the configuration of task ':printName'.
No value has been specified for property 'name'.
的字符串
'\n'
带有空格的|
pipe operator(输入纯文本)。 (出于某种原因必须是其中两个......
div
div.another
= '\n'
div I want a line...
答案 1 :(得分:1)
答案 2 :(得分:0)
以下内容应该为您提供您要求的HTML输出:
div
div.another
div
| I want a line just like above