在Jade中手动插入换行符

时间:2012-10-12 07:51:26

标签: html node.js pug

我有一个看起来像这样的混合

mixin preprocessor_instructions()
  some text goes here

这不仅仅是文本,而是我的预处理器的更多技术指令。我不希望它在任何标签内。问题是当我在这样的Jade模板中使用这个mixin

+preprocessor_instructions

它不会在这段代码之前的输出html中插入换行符虽然我希望在那里看到它看起来很漂亮。如何使用Jade手动插入换行符?

1 个答案:

答案 0 :(得分:0)

您可以使用内联HTML:

mixin preprocessor_instructions()
  | //- <- note the space after the pipe
  some text goes here

+preprocessor_instructions