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

How to add mustaches along with attributes in Pug?

如何在 Pug 中生成以下 HTML:

<p hello="{{there}}" {{extra-attributes}}>hey!</p> 

看来您必须将文档类型设置为 html:

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

至少,这在 jade 在线转换器中有效。