Parse HTML when reading atom feeds


/ Published in: Ruby
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # re-encode html escaped entities when reading atom feeds
  2. def rss_html_parse(content)
  3. content.gsub!("&lt;","<")
  4. content.gsub!("&gt;",">")
  5. content.gsub!("\\","")
  6. content
  7. end

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.