Use markdown with gfm pipeline rather than gfm method

This commit is contained in:
Douwe Maan 2015-10-22 11:02:21 +02:00
parent f65840bc84
commit adba37f99a
2 changed files with 2 additions and 2 deletions

View File

@ -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 gfm(commit.description)
xml.summary markdown(commit.description, pipeline: :atom)
end
end
end

View File

@ -1,3 +1,3 @@
.issue-closed-by-widget
= icon('check')
This issue will be closed automatically when merge request #{gfm(merge_requests_sentence(@closed_by_merge_requests.sort))} is accepted.
This issue will be closed automatically when merge request #{markdown(merge_requests_sentence(@closed_by_merge_requests.sort), pipeline: :gfm)} is accepted.