Skip to content

rss

rss 用于开启 RSS 订阅功能。

yaml
rss:
  enable: false   # Option values: true | false

配置流程:

  1. 在 Hexo 项目根目录下安装 Hexo 插件:hexo-generator-feed

    bash
    cd your-hexo
    npm install hexo-generator-feed
  2. 在 Hexo 配置文件 _config.yml 增加如下配置项

    yaml
    # Feed Atom
    # npm install hexo-generator-feed
    feed:
      type: atom
      path: atom.xml
      limit: 20
  3. 在 Keep 主题配置文件 _config.yml 中启用 RSS

    yaml
    rss:
      enable: true
  4. RSS 订阅功能开启后,将会在右下角工具按钮组里面显示 RSS 按钮

    image

Released under the AGPL-3.0 License