diff --git a/app/views/problems/show.rhtml b/app/views/problems/show.rhtml --- a/app/views/problems/show.rhtml +++ b/app/views/problems/show.rhtml @@ -7,11 +7,17 @@
Description:
-<% if @problem.description!=nil %>
+ <% if @problem.description!=nil %>
+ <% if @problem.description.markdowned %>
+<%= markdown(@problem.description.body) %>
+ <% else %>
<%= @problem.description.body %>-<% end %> + <% end %> + <% else %> + (not available) + <% end %> <%= link_to 'Edit', :action => 'edit', :id => @problem %> |