有一些方法可以使用Jade在同一代码行中强化一些单词来生成HTML吗?
我试着像这样使用markdown code。但是不起作用:
p Here are my **strong words** in my sentence!
我找到的一个独特的解决方案(here)是:
p Here are my <strong>strong words</strong> in my sentence!
还有其他方法吗?
谢谢!
我想你可以做到:
p Here is my #[strong strong words] in my sentence!
对于Pug或Jade,您需要将元素包装在段落中,并使用|
进行行继续。
p
strong This Starts out strong
| but finishes out not
i quite
| as bold.
这将是:
这开始很强,但完成不是那么大胆。
编辑:如评论中所述,在每个组件之前需要一个额外的空格,因为帕格不会添加空格。以上将呈现为:
<p><strong>This Starts out strong </strong> but finishes out not <i> quite </i> as bold.</p>
您可以使用带有样式属性(或CSS类)的span标记。
p Here is my
span(style='font-weight:bold') strong words
in my sentence!
或者您可以使用强标记执行相同的格式设置(添加换行符和缩进)。
p Here is my
strong strong words
in my sentence!