From 7851a292a1fc7da3cd2d1140cd40f35009a9c082 Mon Sep 17 00:00:00 2001
From: Douwe Maan <douwe@gitlab.com>
Date: Fri, 23 Oct 2015 15:00:26 +0200
Subject: [PATCH] Use single_line Markdown pipeline for commit description

---
 app/views/projects/commits/show.atom.builder | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/projects/commits/show.atom.builder b/app/views/projects/commits/show.atom.builder
index 7aab98e07c4..a40720ab4a8 100644
--- a/app/views/projects/commits/show.atom.builder
+++ b/app/views/projects/commits/show.atom.builder
@@ -17,7 +17,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://sear
         xml.name commit.author_name
         xml.email commit.author_email
       end
-      xml.summary markdown(commit.description, pipeline: :atom)
+      xml.summary markdown(commit.description, pipeline: :single_line)
     end
   end
 end
-- 
GitLab