diff --git a/app/views/list/list.rss.erb b/app/views/list/list.rss.erb index 040ece9046b..9e3dfc88294 100644 --- a/app/views/list/list.rss.erb +++ b/app/views/list/list.rss.erb @@ -18,7 +18,7 @@ <%= topic.category.name %> - <%= first_post.cooked.html_safe %> + <%= PrettyText.format_for_email(first_post.cooked, first_post).html_safe %> <%- end %>

<%= t 'rss_num_posts', count: topic.posts_count %> - <%= t 'rss_num_participants', count: topic.participant_count %>

<%= link_to t('read_full_topic'), topic_url %>

diff --git a/app/views/posts/latest.rss.erb b/app/views/posts/latest.rss.erb index 8f97eff3f00..1d7443d1901 100644 --- a/app/views/posts/latest.rss.erb +++ b/app/views/posts/latest.rss.erb @@ -11,7 +11,7 @@ <%= post.topic.title %> ]]> - ]]> + ]]> <%= Discourse.base_url + post.url %> <%= post.created_at.rfc2822 %> <%= Discourse.current_hostname %>-post-<%= post.id %> diff --git a/app/views/topics/show.rss.erb b/app/views/topics/show.rss.erb index 7da14703cd8..bbb4989b4f6 100644 --- a/app/views/topics/show.rss.erb +++ b/app/views/topics/show.rss.erb @@ -21,7 +21,7 @@ <% if post.hidden %> <%= t('flagging.user_must_edit').html_safe %> <% else %> - <%= post.cooked.html_safe %> + <%= PrettyText.format_for_email(post.cooked, post).html_safe %> <% end %>

<%= link_to t('read_full_topic'), post_url %>

]]>