使用<code> or <pre> tags in Jade templates</pre></code>

时间:2013-12-11 11:21:14

标签: javascript node.js express haml pug

是否可以在要在jade模板中显示的代码文本中包含换行符。

说你正在做这样的事情。

html
   head
   body
      pre var config = {"theme":"dark",api-key:"fjhb3u2h4busifhu13u232iuiwrew"} \n
          var service = LameService.init(config)

我不知道如何让服务初始化行进入第二行。它像这样显示在一行中

var config = {"theme":"dark",api-key:"fjhb3u2h4busifhu13u232iuiwrew"} \n var service = LameService.init(config)

1 个答案:

答案 0 :(得分:2)

我知道你找到了答案,但你也可以使用|来换行。

html
   head
   body
      pre var config = {"theme":"dark",api-key:"fjhb3u2h4busifhu13u232iuiwrew"}
        | var service = LameService.init(config)