You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With certain news aggregates, it is preferred to use the source as the title for the RSS feed rather than the RSS feed's title.
For example, with https://news.google.com/news/rss, it would be better for the individual articles to use the <source> attribute (ex. CNN) rather than the <title> attribute (Top stories - Google News)
The text was updated successfully, but these errors were encountered:
New config option added, UseSource bool. When true, RSS feed will replace the rssItem.ChannelName with the item's source title, rather than the specified title or feed title.
It's not exactly an elegant solution, mostly because the gofeed library does not have the source attribute as part of its default gofeed.Feed struct, but it works.
With certain news aggregates, it is preferred to use the source as the title for the RSS feed rather than the RSS feed's title.
For example, with https://news.google.com/news/rss, it would be better for the individual articles to use the <source> attribute (ex. CNN) rather than the <title> attribute (Top stories - Google News)
The text was updated successfully, but these errors were encountered: