Closed
Description
I have the following code
MINDSCAPE_FEED='https://rss.art19.com/sean-carrolls-mindscape'
URI.open(MINDSCAPE_FEED) do |rss|
feed = RSS::Parser.parse(rss, ignore_unknown_element=true)
puts "Title: #{feed.channel.title}"
feed.items.each do |item|
puts item.itunes_episode_type
end
end
Is there any way to access the itunes::episodeType attribute? More generically is there a way to access tags that the parser doesn't know about?