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
There are times when a particular page has high SEO relevance, but we want to encourage search engines to return a different page instead. We can do this by adding a <link rel="canonical" ... element to the document <head> (driven by a Asciidoc attribute with the canonical URL). When implementing this, we'll have to be careful to respect chunking, as we only want the URL to be applied to a single page, not subsequent chunks/pages in the same book.
The text was updated successfully, but these errors were encountered:
By adding a `canonical-url` attribute to a section, the chunked HTML
page for that section will contain a `<link rel="canonical" ...>` tag in
the page header. This tag does not get included in later chunks of the
same input document.
Fixes#2357
There are times when a particular page has high SEO relevance, but we want to encourage search engines to return a different page instead. We can do this by adding a
<link rel="canonical" ...
element to the document<head>
(driven by a Asciidoc attribute with the canonical URL). When implementing this, we'll have to be careful to respect chunking, as we only want the URL to be applied to a single page, not subsequent chunks/pages in the same book.The text was updated successfully, but these errors were encountered: