Atypon RSS format parser class for the Feedjira Ruby Gem
Atypon is a popular publishing software that many scientific journals use. The format of the RSS feed this generates is RDF with each and every element with a namespace prefix.
Example:
<rdf:RDF ...>
<rss:channel ...>
<rss:title ...></rss:title>
</rss:channel>
<rss:item ...>
...
</rss:item>
...
</rdf:RDF>
Add this line to your application's Gemfile:
gem 'feedjira-atypon'
And then execute:
$ bundle
Or install it yourself as:
$ gem install feedjira-atypon
You can configure Feedjira
to use this parser like so:
Feedjira::Feed.add_feed_class(Feedjira::Parser::Atypon)