chore(rss): use forked mkdocs-rss-plugin with validation fixes#73
Merged
Conversation
- Switch to Zerthick/mkdocs-rss-plugin@fix/rss-validation-errors fork which includes upstream PR: Guts/mkdocs-rss-plugin#451 - Remove fix_rss_template.py workaround script (no longer needed) - Remove RSS template patch step from CI workflow Fixes included in fork: - <author> -> <dc:creator> for RSS 2.0 compliance - Guard enclosure length against None values - Fix double-encoded HTML entities in title/description
This was referenced Jul 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Switch to a forked copy of
mkdocs-rss-pluginthat includes RSS 2.0 validation fixes, eliminating the need for thefix_rss_template.pyworkaround script.Changes
mkdocs-rss-plugin>=1.17.1toZerthick/mkdocs-rss-plugin@fix/rss-validation-errorsfix_rss_template.pyworkaround script (124 lines deleted)Fixes included in the fork
Upstream PR: Guts/mkdocs-rss-plugin#451
<author>→<dc:creator>— RSS 2.0 spec requires<author>to be an email address; switched to<dc:creator>for human-readable names&amp;,&lt;,&gt;in title/description caused by MkDocs pre-escaping + Jinja|efilter<enclosure>when length is None/non-positive (handles remote image 404s)Cleanup plan
Once the upstream PR merges, switch back to the official
mkdocs-rss-pluginpackage and drop the fork reference.