Guest User

Untitled

a guest
May 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. atom_feed do |feed|
  2. @stories.each do |story|
  3. feed.entry story do |entry|
  4. entry.title story.title
  5. entry.content "<p>foo</p>", :text => "html"
  6. end
  7. end
  8. end
  9.  
  10. curl produces:
  11.  
  12. <p>foo</p>
  13.  
  14. feedburner renders:
  15.  
  16. <p>foo</p>
  17.  
  18. I am assuming the curl needs to produce <p>foo</p> so that feedburner will render it correctly...
Add Comment
Please, Sign In to add comment