Hexo开启RSS

开启Hexo可以用插件hexo-generator-feed

安装

1
npm install hexo-generator-feed --save

配置

hexo的_config.yml文件中,添加feed配置

1
2
3
4
5
6
7
feed: 
#feed 类型 (atom/rss2)
type: atom
#rss 路径
path: /atom.xml
#在 rss 中最多生成的文章数(0显示所有)
limit: 10

在主题目的_config.yml文件中,添加RSS配置

1
rss: /atom.xml