Plugins
RSS Plugin
Generate RSS feeds for blog and changelog
The RSS plugin generates an RSS feed at /rss.xml, allowing users to subscribe to updates from your blog or changelog.
Installation
pnpm add @barodoc/plugin-rss@latest
Configuration
{
"plugins": [
["@barodoc/plugin-rss", {
"title": "My Docs Updates",
"description": "Latest updates from our documentation",
"collections": ["blog", "changelog"]
}]
]
}
Options
titlestringFeed title. Defaults to the site name from config
descriptionstringFeed description. Default: "Latest updates"
collections('blog' | 'changelog')[]Content collections to include in the feed. Default: ["blog"]