如何在Pug中添加胡须和属性?

问题描述 投票:0回答:1

如何在Pug中生成以下HTML:

<p hello="{{there}}" {{extra-attributes}}>hey!</p> 
pug mustache ractivejs
1个回答
1
投票

看起来您必须将doctype设置为html:

doctype html
p({{extra-attributes}})

至少,这适用于玉石在线转换器。

© www.soinside.com 2019 - 2024. All rights reserved.