如何在Jade中格式化混合文本?

时间:2015-02-23 17:16:56

标签: pug

我一直在使用Jade,我似乎在同一段落中使用混合文字和标签时遇到问题。例如:

p 
  | For more information, click
  a(href="/here") here
  | to read our documentation.

渲染时,这会在"点击"之间留下任何空白区域。和"在这里",所以它看起来像#34;有关更多信息,请单击此处以阅读我们的文档"。

要强制使用空格,我在"点击"之后使用 ,如:

p 
  | For more information, click 
  a(href="/here") here
  | to read our documentation.

......但感觉不对。是否有更自然的Jade-y方式来做到这一点?或者我应该坚持使用HTML非阻塞空间?

1 个答案:

答案 0 :(得分:0)

使用此

p For more information, click #[a(href="/here") here ] to read our documentation.

#[]是字符串或标记中Jade中的代码。