We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c0404 commit b1e1afeCopy full SHA for b1e1afe
mkdocs_rss_plugin/util.py
@@ -478,7 +478,10 @@ def get_description_or_abstract(
478
Returns:
479
str: page description to use
480
"""
481
- description = in_page.meta.get("description")
+ if in_page.meta.get("rss", {}).get("feed_description"):
482
+ description = in_page.meta["rss"]["feed_description"]
483
+ else:
484
+ description = in_page.meta.get("description")
485
486
# If the full page is wanted (unlimited chars count)
487
if chars_count == -1 and (in_page.content or in_page.markdown):
0 commit comments