Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 embeded

This 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
}
},
...
```