Return to Snippet

Revision: 4547
at January 31, 2008 21:17 by vanne


Updated Code
# re-encode html escaped entities when reading atom feeds
def rss_html_parse(content)
  content.gsub!("&lt;","<")
  content.gsub!("&gt;",">")
  content.gsub!("\\","")
  content
end

Revision: 4546
at January 4, 2008 13:30 by vanne


Initial Code
# re-encode html escaped entities when reading atom feeds
def rss_html_parse(content)
  content.gsub!("&lt;","<")
  content.gsub!("&gt;",">")
  content.gsub!("\\","")
  content
end

Initial URL


Initial Description


Initial Title
Parse HTML when reading atom feeds

Initial Tags
ruby

Initial Language
Ruby