From 491783a28a26739062f5cda29a028bd1166617cb Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 21 Oct 2023 13:44:33 -0400 Subject: Format quotes properly in atom feed --- app/views/quotes/latest.atom.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views') 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| @quotes.each do |quote| feed.entry(quote) do |entry| entry.title("##{quote.id}") - entry.content(quote.content, :type => 'text') + entry.content(quote_format(quote.content), :type => 'html') end end end -- cgit 1.4.1