diff --git a/views/content_viewer/_proposal_card.html.erb b/views/content_viewer/_proposal_card.html.erb index e0ed27d..1fcdab6 100644 --- a/views/content_viewer/_proposal_card.html.erb +++ b/views/content_viewer/_proposal_card.html.erb @@ -19,7 +19,7 @@ <% end %>
- <%= proposal_card.abstract %> + <%= proposal_card.abstract.html_safe %>
<%= proposal_score(proposal_card) %> diff --git a/views/content_viewer/proposal.html.erb b/views/content_viewer/proposal.html.erb index 05aec92..f138d9d 100644 --- a/views/content_viewer/proposal.html.erb +++ b/views/content_viewer/proposal.html.erb @@ -1,7 +1,7 @@ <%= show_date(proposal.published_at) %> - <%= _(", by %s") % (proposal.author ? link_to(proposal.author_name, proposal.author_url) : proposal.author_name) %> - <%= _(" - %s") % link_to_comments(proposal) %> + <%= _(", by %s").html_safe % (proposal.author ? link_to(proposal.author_name, proposal.author_url) : proposal.author_name) %> + <%= _(" - %s").html_safe % link_to_comments(proposal) %>
@@ -13,11 +13,11 @@ <%= topic_title proposal.topic %>
-
<%= proposal.abstract %>
+
<%= proposal.abstract.html_safe %>
-
<%= proposal.body %>
+
<%= proposal.body.html_safe %>
<% if proposal.created_by == user && !proposal.published %> diff --git a/views/proposals_discussion_plugin_myprofile/select_topic.html.erb b/views/proposals_discussion_plugin_myprofile/select_topic.html.erb index 1cfa7f8..287e1d6 100644 --- a/views/proposals_discussion_plugin_myprofile/select_topic.html.erb +++ b/views/proposals_discussion_plugin_myprofile/select_topic.html.erb @@ -22,7 +22,7 @@ <%= topic.title %>
- <%= topic.body %> + <%= topic.body.html_safe %>
<% end %> -- libgit2 0.21.2