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
Add alternative link supports (<link rel="alternate">) in HTML <head>. (#85)
Per-page author.email support
author.email is used only in RSS feed tags (<author>, <managingEditor>, <webMaster>) to follow RSS 2.0 specification.
The HTML SEO <meta name="author"> tag only includes the name, not including the email.
If only name is set on a page, email falls back to site config, and vice versa.
Changed
RSS <author>, <managingEditor>, <webMaster> tags can now be overridden by page front matter author. The tag is omitted entirely if no author info is available; otherwise it renders the best available combination:
email (name) — when both are provided
email — when only email is provided
name — when only name is provided
Fallback chain: page [author] > site [params.author]
Fixed
RSS description no longer contains raw chunk HTML tags that were visible in feeds.