Closed GrenderG closed 8 months ago
All field names in the Item
class and the Channel
class are named after the RSS tag names. Atom tags are mapped to a field that best matches a corresponding RSS tag. Therefore is Atom content
tag mapped to the description
field. In this way both RSS feeds and Atom feeds can be treated the same.
var mixedFeed = new RssReader().read(List.of(rssFeedUrl, atomFeedUrl));
At this moment the
content
tag is being treated asdescription
, but it should be treated separately (adding thecontent
variable along withsetContent()
,getContent()
methods, etc).Many feeds have the entire article there (most of WordPress sites, in fact).