view app/views/tweets/_tweet.atom.erb @ 211:e07f6ea17deb

Less xhtml more escaping It looks like some older tweets aren't quite escaped properly for xhtml. Example (assuming not deleted): https://twitter.com/aaaa/status/169688458900668416
author nanaya <me@nanaya.pro>
date Fri, 11 Dec 2020 03:31:25 +0900
parents 70e90ea4b870
children 7a773720d81f
line wrap: on
line source

<entry>
  <id><%= atom_id "#{tweet.user.id}/#{tweet.id}" %></id>
  <published><%= tweet.created_at.xmlschema %></published>
  <updated><%= tweet.created_at.xmlschema %></updated>
  <link rel="alternate" type="text/html" href="<%= status_url(tweet) %>"/>
  <title><%= truncate tweet.unescaped_text, :length => 30 %></title>
  <content type="html">
    <%= render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }).to_str %>
  </content>
  <author>
    <name><%= tweet.user.screen_name %></name>
  </author>
</entry>