You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, love the lib. Would there be some merit to cascading a <link rel="canonical" ... /> tag? (link tags aren't cascaded and for good reason)
But this particular link tag has a uniqueness requirement akin to title and other meta tags, Multiple canonicals are ignored (this is old, but looks to be still relevant)
Specify no more than one rel=canonical for a page. When more than one is specified, all rel=canonicals will be ignored.
To bring this to a question: right now canonical is required to be set on every page, but should this be handled as an edge case and cascaded, or maybe there something a little more interesting here where we can leverage the platform and give any link tag the ability to cascade given a unique identifier via an id or class (or other) attribute?
One last thing, the canonical tag in the readme is using a content attribute but I think you want an href attribute: <Link rel="canonical" content="http://jeremygayed.com/" /> to <Link rel="canonical" href="http://jeremygayed.com/" />
Thank you for you time
The text was updated successfully, but these errors were encountered:
Although it would need to be slightly more sophisticated than that if we only want to cascade <Link rel="canonical" /> and not other Link tags. But I'm curious to understand your use case a bit better.
First off, love the lib. Would there be some merit to cascading a
<link rel="canonical" ... />
tag? (link tags aren't cascaded and for good reason)But this particular
link
tag has a uniqueness requirement akin totitle
and othermeta
tags,Multiple
canonicals
are ignored (this is old, but looks to be still relevant)To bring this to a question: right now
canonical
is required to be set on every page, but should this be handled as an edge case and cascaded, or maybe there something a little more interesting here where we can leverage the platform and give anylink
tag the ability to cascade given a unique identifier via anid
orclass
(or other) attribute?One last thing, the
canonical
tag in the readme is using acontent
attribute but I think you want anhref
attribute:<Link rel="canonical" content="http://jeremygayed.com/" />
to<Link rel="canonical" href="http://jeremygayed.com/" />
Thank you for you time
The text was updated successfully, but these errors were encountered: