>或?" />

我应该使用 >或

发布于 2024-10-19 02:45:52 字数 816 浏览 1 评论 0 原文

在 html 5 中, rel="author" 用于链接到有关页面作者的信息。这可以是 mailto: 地址,但并非必须如此。它可以简单地链接到联系表格或“关于作者”页面(出于明显的原因,我个人不想提供电子邮件)。

到目前为止,我一直在使用 author 属性有效地做同样的事情 - 尽管新的 html 5 规范的优点是您不仅可以提供名称,还可以提供一个链接,其中提供了有关您的更多信息。

根据 Stack Overflow 上的另一个答案,似乎Google、Yahoo 和 MSN 不会为 作者标签建立索引 [来源]。它怀疑他们目前也没有索引 rel="author"

两者都提供有意义吗?或者说现在担心这个是没有意义的?

In html 5, rel="author" is used to link to information about the author of the page. This can be a mailto: address, though it doesn't have to be. It could simply link to a contact form or "about the author" page (I personally wouldn't want to provide email for obvious reason).

Until now, I've been using the meta author attribute to do effectively the same thing—although the advantage of the new html 5 specification is that you can provide more than just a name, but also a link where further information about you is provided.

It seems, based on another answer on Stack Overflow, that Google, Yahoo, and MSN do not index the <meta> author tag [source]. It suspect they don't currently index rel="author" either.

Would it make sense to provide both? Or is it pointless to worry about this at present?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷离° 2024-10-26 02:45:52

搜索引擎之间的战争背后是一种“专有元”,那么我将两者兼而有之。
搜索引擎不应该责怪您同时使用两者,除非您不尝试进行一些垃圾邮件索引。

根据内容的目的,不同的上下文中使用特定的元。

Google Scholar 元数据

让您使用:

<meta name="citation_authors" content="Donald Jenkins">
<meta name="citation_keywords" content="html5 html meta-tags">

还有< a href="http://dublincore.org/" rel="noreferrer">都柏林核心元数据计划,它提供了一套完整的元数据用于创作等。

不是元数据,但提供个人数据仍然很有趣信息,hcard 微格式,它使用简单且语义的 html 以可解析的格式提供 vcard由其他引擎。

哈卡示例:

<div class="vcard">
 <a class="url fn n" href="http://borisguery.com/">
  <span class="given-name">Boris</span> 
  <span class="family-name">Guéry</span>
 </a>
</div>

Behind the war between search engines, are kind of "proprietaries metas", then I'll go for both.
Search engine should not blame you to use both until you're not trying to do some spam indexing.

Depending on what is the purpose of your content, there are specific meta used in different contexts.

Google Scholar Metadata

Let you use:

<meta name="citation_authors" content="Donald Jenkins">
<meta name="citation_keywords" content="html5 html meta-tags">

There is also Dublin Core Meta Data Initiative, which provides a complete set of metadata for authoring, etc.

Not a medata but still interesting to provide personnal informations, the hcard microformat, it uses plain and semantic html to provide vcard, in a format which can be parsed by other engine.

Example of hcard:

<div class="vcard">
 <a class="url fn n" href="http://borisguery.com/">
  <span class="given-name">Boris</span> 
  <span class="family-name">Guéry</span>
 </a>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文