Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomascarvalho/gatsby-plugin-rss-feed-extended
add html parsers to gatsby-source-rss-feed library
https://github.com/thomascarvalho/gatsby-plugin-rss-feed-extended
Last synced: about 1 month ago
JSON representation
add html parsers to gatsby-source-rss-feed library
- Host: GitHub
- URL: https://github.com/thomascarvalho/gatsby-plugin-rss-feed-extended
- Owner: thomascarvalho
- Created: 2019-11-10T16:28:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:46:53.000Z (about 2 years ago)
- Last Synced: 2024-12-11T01:48:17.199Z (about 2 months ago)
- Language: JavaScript
- Size: 1.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gatsby-plugin-rss-feed-extended
Parse html feed content
- transform spotify links to embeded players
- add a parent div with class='youtube-container' to iframe youtube embededThis plugin requires `gatsby-source-rss-feed`
Use this plugin with and declare it after
gatsby-config.js
```
...
{
resolve: `gatsby-source-rss-feed`,
options: {
url: `https://rss-feed-url.com/`,
name: `RssFeedName`,
}
},
{
resolve: `@dikalikatao/gatsby-plugin-rss-feed-extended`,
options: {
name: `RssFeedName`, // same name as above
}
},
...
```