Skip to main content
GitHub
1 min read

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

titlestring

Feed title. Defaults to the site name from config

descriptionstring

Feed description. Default: "Latest updates"

collections('blog' | 'changelog')[]

Content collections to include in the feed. Default: ["blog"]