0%

hexo 博客搭建之订阅RSS

为 hexo 博客添加RSS订阅功能


1. 安装RSS插件

Github: hexo-generator-feed

1
$ npm install hexo-generator-feed --save

2. 可以编辑 站点配置文件:_config.yml,配置插件

插件安装后默认已启用,无需再配置,除非定制化你懂得~

个人认为默认就够用了,不需要再增加以下代码了,_config.yml 文件保持简洁挺好。

1
2
3
4
5
6
7
8
9
10
11
12
13
feed:
enable: true
type: atom
path: atom.xml
limit: 20
hub:
content:
content_limit: 140
content_limit_delim: ' '
order_by: -date
icon: icon.png
autodiscovery: true
template:
  • type 支持 atomrss2 ,默认 atom ,也可同时开启。
1
2
3
4
5
6
7
8
9
10
11
feed:
# Generate atom feed
type: atom

# Generate both atom and rss2 feeds
type:
- atom
- rss2
path:
- atom.xml
- rss2.xml

RSS 客户端

  • 苹果手机

    • ReadOn - 目前我是使用的是这款 App
    • Ego Reader
  • 安卓手机

    • 未完,待续…