You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`scully-plugin-rss` is a `postRenderer` plugin for [Scully](http://scully.io/) adding creating a rss feed from your content using [feed](https://github.com/jpmonette/feed) and [showdown](https://github.com/showdownjs/showdown).
5
+
`scully-plugin-rss` is a `routeDiscoveryDone` plugin for [Scully](http://scully.io/). A RSS Feed is created from your content using [feed](https://github.com/jpmonette/feed) and [showdown](https://github.com/showdownjs/showdown).
6
6
7
7
The rss feed is available at:
8
8
9
9
- your-domain.de/feed.json
10
10
- your-domain.de/feed.atom
11
11
- your-domain.de/feed.xml
12
12
13
+
> **Breaking Change** introduced in Version 1.0.0 with changing the plugin type from `render` to `routeDiscoveryDone`. This has the major benefit of only generating the RSS Feed once per run instead of after each page render.
14
+
13
15
## 📦 Installation
14
16
15
-
To install this plugin with `npm` run
17
+
Install the RSS Feed plugin using the command
16
18
17
-
```
18
-
$ npm install @notiz/scully-plugin-rss --save-dev
19
+
```bash
20
+
npm install @notiz/scully-plugin-rss --save-dev
19
21
```
20
22
21
23
## Usage
@@ -71,7 +73,7 @@ Each RSS Feed item attributes are currently assigned by the following scully rou
71
73
|`contributor`|`authors`|
72
74
|`date`|`updatedAt`\|`publishedAt`|
73
75
74
-
Your content should have the following frontmatter in your scully content:
76
+
Your content should have the following front matter in your scully content:
0 commit comments