-
Gatsby源代码插件gatsby-source-rss-feed,专为处理RSS订阅源而设计
资源介绍
gatsby-source-rss-feed
源插件,用于从RSS feed中将数据提取到Gatsby中。
安装
npm install --save gatsby-source-rss-feed
或者
yarn add gatsby-source-rss-feed
如何使用
基本模式
// In your gatsby-config.js
module . exports = {
plugins : [
{
resolve : `gatsby-source-rss-feed` ,
options : {
url : `http://static.userland.com/gems/backend/rssTwoExample2.xml` ,
name : `ExampleRSS` ,
}
}
]