plugin-rss

Gungnir
2020-03-26
2 min

npm github license

@renovamen/vuepress-plugin-rss 插件,用于为 VuePress 主题 Gungnir 提供 RSS 支持。修改自 youngtailors/vuepress-plugin-rss

注意

该插件仅能保证在 VuePress 主题 Gungnir 上正常工作,在别的 VuePress 主题上可能会无效。

# 安装

yarn add @renovamen/vuepress-plugin-rss
# or
npm install @renovamen/vuepress-plugin-rss

# 配置

.vuepress/config.js 中配置插件:

module.exports = {
  plugins: [
    [
      '@renovamen/vuepress-plugin-rss', {
        site_url: "https://zxh.io",  // 网站链接 (必须)
        copyright: "Renovamen 2018-2021",  // 版权信息(可选)
        count: 20,  // 需要在 rss 上显示多少篇文章(可选)
        filter: (frontmatter) => { return [true|false] },  // 文章筛选函数(可选)
      }
    ]
  ]
}

# 开源协议

MIT