This plugin allows you to save articles from RSS feeds as local markdown files.
You can use the following variables in file name and content templates:
{{title}}: Article title{{link}}: Original article URL{{author}}: Article author name{{content}}: Full article content (HTML){{publishedTime}}: Publication date and time (YYYY-MM-DD HH:mm:ss format){{savedTime}}: Date and time when the article was saved to your vault{{image}}: Article image URL (can be used in frontmatter or content){{description}}: Full article description/summary{{descriptionShort}}: First 50 characters of the description{{#tags}}: Article categories formatted as hashtags (e.g., "#tech #news")---
title: {{title}}
link: {{link}}
author: {{author}}
publish_date: {{publishedTime}}
saved_date: {{savedTime}}
image: {{image}}
tags: {{#tags}}
---

{{content}}
With description:
---
title: {{title}}
link: {{link}}
author: {{author}}
publish_date: {{publishedTime}}
saved_date: {{savedTime}}
image: {{image}}
description: {{descriptionShort}}
tags: {{#tags}}
---

{{content}}
Note: The publish_date and saved_date frontmatter keys are used by the auto-delete feature to determine which articles to remove.
npm i or yarnnpm run devThis plugin is inspired by the implementation of joethei/obsidian-rss.