Metadata-Version: 2.4
Name: mkdocs-changelog-feed-plugin
Version: 2025.10.18
Summary: MkDocs plugin that adds RSS and Atom feeds for a changelog in the Keep a Changelog format.
License-Expression: AGPL-3.0-or-later
License-File: LICENSE
Author: Tobias Bölz
Author-email: tobias@boelz.eu
Requires-Python: >=3.10,<4.0
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Documentation
Classifier: Topic :: Text Processing
Classifier: Framework :: MkDocs
Requires-Dist: beautifulsoup4 (>=4.14.2,<5.0.0)
Requires-Dist: feedgenerator (>=2.2.1,<3.0.0)
Requires-Dist: mkdocs (>=1.6)
Project-URL: Changelog, https://tmb.codeberg.page/mkdocs-changelog-feed-plugin/changelog/
Project-URL: Homepage, https://tmb.codeberg.page/mkdocs-changelog-feed-plugin/
Project-URL: Issues, https://git.boelz.eu/tmb/mkdocs-changelog-feed-plugin/issues
Project-URL: Repository, https://git.boelz.eu/tmb/mkdocs-changelog-feed-plugin
Description-Content-Type: text/markdown

# MkDocs changelog feed plugin

[MkDocs](https://www.mkdocs.org/) 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](#changelog_file), 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](https://keepachangelog.com/) format, e.g. every entry starts with a second level heading, the version title and the date have to be separated by -[^dash], the date has to be in ISO 8601 format, etc.

## Installation

```shell
pip install mkdocs-changelog-feed-plugin
```

## Usage

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

```yaml
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`

### `links_icon`

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.

[^dash]: Or &ndash; or &mdash;, in case something like the SmartyPants extension replaces the `-` character.

