Website RSS
About
1
min read
(
52
Words
)
Reads
Switch to Raw MarkdownContent
No additional plugins are required; an RSS feed is generated by default.
The default configuration is as follows:
_config.linen.yml1 2 3 4
| feed: path: /feed.xml limit: 10 icon: /favicon.svg
|
You may modify the three RSS configuration options listed above.
If you wish to disable the RSS plugin (or use a different RSS plugin), you can add the following configuration to turn off the built-in RSS plugin:
_config.linen.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| --- title: Website RSS date: 2026-03-28 23:56 cover: /img/markus-winkler-GdpDAj8unB4-unsplash.jpg coverInfo: author: Markus Winkler url: https://unsplash.com/photos/a-wooden-block-spelling-subscribe-on-a-table-GdpDAj8unB4 series: User-Guide appendRawMarkdown: true tocType: flat translations: ['zh-CN'] ---
No additional plugins are required; an RSS feed is generated by default.
The default configuration is as follows:
```yaml _config.linen.yml feed: path: /feed.xml limit: 10 icon: /favicon.svg ```
You may modify the three RSS configuration options listed above.
If you wish to disable the RSS plugin (or use a different RSS plugin), you can add the following configuration to turn off the built-in RSS plugin:
```yaml _config.linen.yml feed: false ```
|