Hexo添加RSS订阅功能

先看看效果图:

image

首先安装安装hexo-generator-feed

1
2
3
$ pwd
/e/GitHup_Data/Hexo_Blog
$ npm install hexo-generator-feed --save

配置Hexo根目录_config.yml,配置RSS订阅

1
2
3
4
5
6
7
8
9
10
$ pwd
/e/GitHup_Data/Hexo_Blog
$ head -72 _config.yml | tail -7
plugin:
- hexo-generator-feed
#Feed Atom
feed:
type: atom
path: atom.xml
limit: 20

配置主题下的_config.yml,添加RSS订阅链接

1
2
3
4
5
6
7
$ pwd
/e/GitHup_Data/Hexo_Blog
$ cd themes/maupassant/
$ tail -3 _config.yml
# SubNav
subnav:
rss: "/atom.xml"

添加之后,运行hexo g后,就会在页面上生成RSS图标
image


本文出自”Jack Wang Blog”:http://www.yfshare.vip/2017/02/14/Hexo添加RSS订阅功能/