Make Your RSS Feed Discoverable
This post's featured URL for sharing metadata is https://www.jvt.me/img/profile.jpg.
Why?
Hopefully you're providing an RSS/Atom feed for folks to subscribe to your posts, and if not - please do add one! It's a great way for folks to continue to keep up to date with your posts.
One thing to improve discoverability of whether your site has a feed is to have a /feeds page, or as I've got, a /subscribe/ page.
But there's also a way of doing this so it's even easier to discover whether someone's got feeds.
By implementing RSS Feed Discovery, you can make it so an avid reader can point their feed reader to your blog's URL, and it'll automagically discover your posts.
It's a great way to make feeds discoverable, on top of the user doing it themselves.
How
As noted in the link above RSS Feed Discovery spec, you need to add a <link>
attribute in the <head>
element in your site's page(s):
<link rel=alternate type=application/rss+xml href=/feed.xml title="Jamie Tanna | Software Engineer">
Something to make sure you do is add the type
, as a lot of readers require it, which is fair enough as it's in the spec, but caught me out recently.
It's that straightforward, and even if it only makes my life easier for subscribing to your posts, please do it!