How to solve this error : Bad value original-source for attribute rel
How to solve this error : Bad value original-source for attribute rel
我正在尝试使用 w3c 验证我的站点,但出现错误:
Bad value original-source for attribute rel on element link:
The string original-source is not a registered keyword.
对于:
<link rel="original-source" href="http://themarketmogul.com/" />
任何人都可以建议我如何解决这个错误。
rel
属性指定 link 的类型。此属性(类型)接受的值集有限。规范在 4.8.4 Link types:
部分定义了它们
- alternate - 提供当前文档的替代表示。
- author - 为当前文档或文章的作者提供 link。
- bookmark - 为最近的祖先部分提供 permalink。
等等
此列表还包括可能是最著名的 stylesheet
类型,用于导入 CSS 样式表。但是这里有
没有 "original-source" 类型。因此,您得到验证错误。
在您的情况下,您可能正在寻找名称为 "original-source" 的 meta
标签(请参阅 codyogden 的回答)。
您可能正在寻找 meta
标签 allows you to specify an original source。 link
不是用于此目的的正确标签。
<meta name=”original-source” content=”http://www.somedomain.com/article1.html”>
我正在尝试使用 w3c 验证我的站点,但出现错误:
Bad value original-source for attribute rel on element link:
The string original-source is not a registered keyword.
对于:
<link rel="original-source" href="http://themarketmogul.com/" />
任何人都可以建议我如何解决这个错误。
rel
属性指定 link 的类型。此属性(类型)接受的值集有限。规范在 4.8.4 Link types:
- alternate - 提供当前文档的替代表示。
- author - 为当前文档或文章的作者提供 link。
- bookmark - 为最近的祖先部分提供 permalink。
等等
此列表还包括可能是最著名的 stylesheet
类型,用于导入 CSS 样式表。但是这里有
没有 "original-source" 类型。因此,您得到验证错误。
在您的情况下,您可能正在寻找名称为 "original-source" 的 meta
标签(请参阅 codyogden 的回答)。
您可能正在寻找 meta
标签 allows you to specify an original source。 link
不是用于此目的的正确标签。
<meta name=”original-source” content=”http://www.somedomain.com/article1.html”>