summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/show.atom.builder
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-10-23 15:00:26 +0200
committerDouwe Maan <douwe@gitlab.com>2015-10-23 15:00:26 +0200
commit7851a292a1fc7da3cd2d1140cd40f35009a9c082 (patch)
tree6ea61b46c0f1c27ea80abd703d16cdb5c31f2843 /app/views/projects/commits/show.atom.builder
parent46025ffb8c717eedced397edd19ce8f0d67802e7 (diff)
downloadgitlab-ce-7851a292a1fc7da3cd2d1140cd40f35009a9c082.tar.gz
Use single_line Markdown pipeline for commit description
Diffstat (limited to 'app/views/projects/commits/show.atom.builder')
-rw-r--r--app/views/projects/commits/show.atom.builder2
1 files changed, 1 insertions, 1 deletions
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