作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div itemscope="" itemtype="http://schema.org/ItemList" >
<span itemprop="???"><a href="feed.rss">RSS of this section</a></span>
<ul>
<li itemprop="itemListElement" itemscope itemtype="http://example.net/Item">
<a href="" itemprop="url">title</a>
</li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
span
标签中的 feed 怎么样?是否有任何 Schema.org 类型?
最佳答案
2019 年更新:Schema.org 可能很快就会有一个用于播客的 webFeed
属性 (see pull request),并且它的定义可能会被扩展,以便它可以也用于非播客上下文,但我怀疑是否可以将它添加到 ItemList
。
Schema.org 词汇表没有为 feeds 定义类或属性.
但是 HTML5 定义了一种链接提要的方法:使用 alternate
link type连同 type
attribute分别设置为 application/rss+xml
。 application/atom+xml
.
<a href="feed.rss" rel="alternate" type="application/rss+xml">RSS of this section</a>
(以这种方式链接的 first 提要被视为自动发现的默认提要;因此,当您在同一页面上链接了多个部分提要时,您应该确保第一个提要是一般提要而不是特定提要只有一个部分。)
关于html - 如何为提要添加 Schema.org 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22297312/
我是一名优秀的程序员,十分优秀!