用玉

时间:2016-04-14 03:04:43

标签: pug

我怎么能用Jade做到这一点?

<h3 class = "blurb"> how would I <span>do this</span></h3>

除了引入跨度句子之外,我几乎可以做任何事情。

4 个答案:

答案 0 :(得分:3)

h3.blur.
 how would I <span>do this</span>

OR

h3.blur
  | how would I 
  span do this

请注意,由于缩进,复制上面的代码段可能无法正常工作。您需要将空格转换为sublime或类似编辑器中的选项卡。

答案 1 :(得分:2)

管道也是可选的,具体取决于上下文

h3.blurb how would i
 span do this

也有效

答案 2 :(得分:1)

这应该可以帮到你:

h3
    how should I
    span do this

您的输出代码将不是您想要的,但是当它以html呈现时,它应该是您需要的

答案 3 :(得分:0)

可能正确的方法是使用pug's tag interpolation

h3.blur how would I #[span do this]