/ Published in: Ruby
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# re-encode html escaped entities when reading atom feeds def rss_html_parse(content) content.gsub!("<","<") content.gsub!(">",">") content.gsub!("\\","") content end