0.0
No commit activity in last 3 years
No release in over 3 years
parse opml file using nokogiri,it generates head nad body of opml
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme
reads Opml file format using nokogiri

class OpmlFeed
  include OpmlReader
end

opml_feed = OpmlFeed.new()
opml_feed.parse(file_name or xml_content)

Display header of opml
opml_feed.head["title"]
opml_feed.head["created_date"]
opml_feed.head["modified_date"]
opml_feed.head["owner_name"]
opml_feed.head["owner_email"]

Display body of opml
It return collection of outlines
opml_feed.outlines
Each outline has following field

opml_feed.outlines.first.outline
 It contains hash key contains attributes and value contains attribute values