From 4dc13316768ba89cbf1f48dfc3e7bfffd54b5b1d Mon Sep 17 00:00:00 2001 From: Steven Verbeek Date: Sat, 17 Mar 2012 02:09:16 -0300 Subject: [PATCH] Markdown for issue description, added issue title --- app/views/issues/show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/issues/show.html.haml b/app/views/issues/show.html.haml index edd13d6e..bd94810a 100644 --- a/app/views/issues/show.html.haml +++ b/app/views/issues/show.html.haml @@ -1,5 +1,5 @@ %h3 - @issue.title + #{@issue.title} %small created at = @issue.created_at.stamp("Aug 21, 2011") @@ -43,7 +43,7 @@ %hr - %div= simple_format @issue.description + %div= markdown @issue.description .issue_notes#notes= render "notes/notes", :tid => @issue.id, :tt => "issue"