网站 RSS
约
1
分钟阅读
(
88
个字
)
阅读
切换到原始 Markdown 内容
无需另外安装插件,默认可生成 RSS 文件。
默认配置为:
_config.linen.yml1 2 3 4
| feed: path: /feed.xml limit: 10 icon: /favicon.svg
|
可以修改上面 3 个 RSS 配置选项。
如果需要关闭 RSS 插件(或是使用其他的 RSS 插件),可添加下面的配置来关闭内置的 RSS 插件:
_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: 网站 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: 用户指南 appendRawMarkdown: true tocType: flat translations: ['en'] ---
无需另外安装插件,默认可生成 RSS 文件。
默认配置为:
```yaml _config.linen.yml feed: path: /feed.xml limit: 10 icon: /favicon.svg ```
可以修改上面 3 个 RSS 配置选项。
如果需要关闭 RSS 插件(或是使用其他的 RSS 插件),可添加下面的配置来关闭内置的 RSS 插件:
```yaml _config.linen.yml feed: false ```
|