jekyll-seo-tag icon indicating copy to clipboard operation
jekyll-seo-tag copied to clipboard

Removal of `meta name="author"`

Open danielhaim1 opened this issue 6 years ago • 2 comments
trafficstars

I've removed the <meta name="author" /> tag from template.html

The reasons are is that this specific meta tag has been dropped back in 2014. The correct way to use the authorship tag is through the rel="author" tag,

Example:

<a href="/authorname/archive" rel="author">Author Name</a>

However, the meta name="author" is primarily used as citation

<meta name="citation_title" content="Crystal structure of squid rhodopsin" />
<meta name="citation_publication_date" content="1999" />
<meta name="citation_author" content="Murakami, Midori" />
<meta name="citation_author" content="Kouyama, Tsutomu" />
<meta name="citation_pdf_url" content="crist_struct.pdf" />

Sources:

danielhaim1 avatar Sep 28 '19 12:09 danielhaim1

Since this would theoretically be a breaking change, or at least would require downstream users to know to add a href with the necessary rel parameter, would changing the meta to a link (with the rel parameter) work? (A cursory search suggests the rel=author tag can be a link doesn't have to be an a tag)

benbalter avatar Oct 01 '19 20:10 benbalter

I'll research today and get back to you @benbalter

danielhaim1 avatar Oct 04 '19 05:10 danielhaim1