From 4f77ca72a31b515b551b0bf8f8c83da89de0b975 Mon Sep 17 00:00:00 2001 From: Benjamin Elijah Griffin Date: Mon, 24 Jul 2017 17:15:15 -0700 Subject: [PATCH] Stop Rails from escaping the HTML in this description. --- app/views/categories/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/categories/index.html.erb b/app/views/categories/index.html.erb index f30438dd2f1..5084a7e01f4 100644 --- a/app/views/categories/index.html.erb +++ b/app/views/categories/index.html.erb @@ -6,7 +6,7 @@

<%= c.name %>

- <%= c.description %> + <%= c.description.html_safe %> <% end %>