diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 13:44:33 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 13:44:33 -0400 |
commit | 491783a28a26739062f5cda29a028bd1166617cb (patch) | |
tree | fa865e5cef2b9a24555344b9a0a50b13253952f1 /app | |
parent | db803440022103bb6d4f7015d87db3b52610223a (diff) | |
download | thoughts-491783a28a26739062f5cda29a028bd1166617cb.tar.gz thoughts-491783a28a26739062f5cda29a028bd1166617cb.tar.bz2 thoughts-491783a28a26739062f5cda29a028bd1166617cb.zip |
Format quotes properly in atom feed
Diffstat (limited to 'app')
-rw-r--r-- | app/views/quotes/latest.atom.builder | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/quotes/latest.atom.builder b/app/views/quotes/latest.atom.builder index 66849cc..d389a58 100644 --- a/app/views/quotes/latest.atom.builder +++ b/app/views/quotes/latest.atom.builder | |||
@@ -5,7 +5,7 @@ atom_feed do |feed| | |||
5 | @quotes.each do |quote| | 5 | @quotes.each do |quote| |
6 | feed.entry(quote) do |entry| | 6 | feed.entry(quote) do |entry| |
7 | entry.title("##{quote.id}") | 7 | entry.title("##{quote.id}") |
8 | entry.content(quote.content, :type => 'text') | 8 | entry.content(quote_format(quote.content), :type => 'html') |
9 | end | 9 | end |
10 | end | 10 | end |
11 | end | 11 | end |