gatsby-source-rsshub
v1.3.3
Published
Gatsby plugin for source rsshub
Downloads
5
Maintainers
Readme
gatsby-source-rsshub
Create a rss xml from rsshub for your Gatsby site.
Install
npm install --save gatsby-source-rsshub
How to Use
// In your gatsby-config.js
plugins: [`gatsby-source-rsshub`];
Options
The options are as follows:
siteUrl
(string) use for atom linkquery
(object) rsshub default query, it will set to every rsshub request search. example:{"limit":10}
rsshubConfig
(object) look here: configrsshub
(array), config all rsshub url needed to request
Example:
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-rsshub`,
options: {
query: {
limit: 10,
},
rsshubConfig: {},
rsshub: ["/weseepro/newest"], // default output will be ${prefix}/weseepro/newest.xml
// or
// rsshub: [{url:"/weseepro/newest",query:{limit:10},slug:"/test.xml"}]
},
},
];
Query
{
allRsshub {
edges {
node {
slug
json
xml
atom
sourceUrl
}
}
}
}