hexo博客安装RSS插件 发表于 2016-08-27 更新于 2020-02-20 分类于 记录 Disqus: 一、步骤1、安装插件。进入本地hexo目录,打开git bash。输入以下命令 1npm install hexo-generator-feed 2、添加配置。在本地hexo根目录下的_config.yml文件中,添加以下配置。 12345678910# Extensions## Plugins: http://hexo.io/plugins/#RSS订阅plugin:- hexo-generator-feed#Feed Atomfeed:type: atompath: atom.xmllimit: 20 3、添加主题配置,在主题目录下的_config.yml目录下,添加如下配置。 1rss: /atom.xml 原文链接:本人CSDN博客