From: lists Date: 2005-11-05T12:26:22+09:00 Subject: RSS::Parser not showing tags Hi, I'm playing around with lib/rss and am having difficulty getting the tags. Here's what I mean: ### require 'rss/2.0' require 'rss/content' require 'open-uri' feed = 'http://docs.info.apple.com/rss/allproducts.rss' open(feed) { |http| rss = RSS::Parser.parse(http.read, false) p rss.items[1] } ### The above code shows this: # Note that @content is missing. If I curl http://docs.info.apple.com/ rss/allproducts.rss I see that there are tags. Any ideas what I need to do to be able to get @content in the RSS::Rss::Channel::Item object? Thanks, Ryan