MkDocs plugin that adds RSS and Atom feeds for a changelog in the Keep a Changelog format. https://tmb.codeberg.page/mkdocs-changelog-feed-plugin/
Find a file
Tobias Bölz 8b0c70625b
All checks were successful
Update Docs / docs (push) Successful in 23s
Version 2026.5.14 (#23)
Reviewed-on: #23
2026-05-14 21:56:30 +02:00
.forgejo/workflows Specify maximum MkDocs version (#19) 2026-05-14 20:00:22 +02:00
docs Add author name to RSS feed items (#14) 2025-11-23 18:06:25 +01:00
mkdocs_changelog_feed_plugin Version 2026.5.14 (#23) 2026-05-14 21:56:30 +02:00
.flake8 Version 2025.10.18 (#1) 2025-10-18 17:46:40 +02:00
.gitignore Initial commit 2025-10-17 18:48:38 +02:00
CHANGELOG.md Version 2026.5.14 (#23) 2026-05-14 21:56:30 +02:00
LICENSE Initial commit 2025-10-17 18:48:38 +02:00
mkdocs.yml Version 2026.5.14 (#23) 2026-05-14 21:56:30 +02:00
noxfile.py Test with Python 3.15 (#20) 2026-05-14 20:32:05 +02:00
poetry.lock Version 2026.5.14 (#23) 2026-05-14 21:56:30 +02:00
pyproject.toml Version 2026.5.14 (#23) 2026-05-14 21:56:30 +02:00
README.md Specify maximum MkDocs version (#19) 2026-05-14 20:00:22 +02:00

MkDocs changelog feed plugin

MkDocs version 1 plugin that adds RSS and Atom feeds for a changelog.

This plugin takes the rendered HTML output of the page specified by the changelog_file setting, splits it into sections for each changelog entry, and generates RSS and Atom feeds with items for each of those entries. Then, links to the feeds are added to the page.

The page is expected to be in the Keep a Changelog format, e.g. every entry starts with a second level heading, the version title and the date have to be separated by -1, the date has to be in ISO 8601 format, etc.

Installation

pip install mkdocs-changelog-feed-plugin

Usage

In mkdocs.yaml, set site_url and add the plugin to plugins:

site_name: My Docs
site_url: https://mydocs.example.com/
plugins:
  - search
  - changelog_feed

Plugin configuration

changelog_file

The file within your docs directory containing the changelog.

default: CHANGELOG.md

feed_title

The feed's title.

Defaults to "page name - site name", if not set.

default: null

feed_description

The feed's description (RSS)/subtitle (Atom).

default: null

Remove permalinks added by Python-Markdown's Table of Contents extension from the feeds.

default: true

Icon to be displayed next to the links to the feeds at the top of the page.

default: <i class="fa fa-square-rss"></i>

Licence

This project is licenced under the AGPL-3.0 license.


  1. Or or —, in case something like the SmartyPants extension replaces the - character. ↩︎