view app/views/tweets/_tweet.atom.erb @ 233:0f0cc55ff11b

Character class, not literal D
author nanaya <me@nanaya.net>
date Fri, 14 Jul 2023 01:45:40 +0900
parents e07f6ea17deb
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>