Schema.org 首字母缩略词/缩写词(在词汇表中)
Schema.org for acronym / abbreviation (in a glossary)
我想在我的网站词汇表中用 Schema.org(使用微数据)标记我的 acronyms/abbreviations 列表。
哪种类型的 Schema.org 适合这种情况?
我在 full list on schema.org 中找不到任何相关类型。
类型DefinedTerm
(which is currently in Pending,所以可能会有变化)适合
word, name, acronym, phrase, etc. with a formal definition
在词汇表中,您可以使用 name
属性 表示术语,description
属性 表示术语的含义。
<p itemscope itemtype="https://schema.org/DefinedTerm">
<span itemprop="name">SO</span>:
<span itemprop="description">Stack Overflow</span>
</p>
或使用语义标记:
<dl>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<dt itemprop="name"><dfn><abbr>SO</abbr></dfn></dt>
<dd itemprop="description">Stack Overflow</dd>
</div>
</dl>
(对于整个词汇表,您可以使用类型 DefinedTermSet
, and add each entry with the property inDefinedTermSet
。)
我想在我的网站词汇表中用 Schema.org(使用微数据)标记我的 acronyms/abbreviations 列表。
哪种类型的 Schema.org 适合这种情况?
我在 full list on schema.org 中找不到任何相关类型。
类型DefinedTerm
(which is currently in Pending,所以可能会有变化)适合
word, name, acronym, phrase, etc. with a formal definition
在词汇表中,您可以使用 name
属性 表示术语,description
属性 表示术语的含义。
<p itemscope itemtype="https://schema.org/DefinedTerm">
<span itemprop="name">SO</span>:
<span itemprop="description">Stack Overflow</span>
</p>
或使用语义标记:
<dl>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<dt itemprop="name"><dfn><abbr>SO</abbr></dfn></dt>
<dd itemprop="description">Stack Overflow</dd>
</div>
</dl>
(对于整个词汇表,您可以使用类型 DefinedTermSet
, and add each entry with the property inDefinedTermSet
。)