我是使用 Jade 的新手——到目前为止它很棒。
但我需要发生的一件事是具有“itemscope”属性的元素:
<header itemscope itemtype="http://schema.org/WPHeader">
我的翡翠符号是:
header(itemscope, itemtype='http://schema.org/WPHeader')
但结果是:
<header itemscope="itemscope" itemtype="http://schema.org/WPHeader">
我怎样才能确保我得到正确的结果——itemscope
而不是itemscope="itemscope"
?