Select Git revision
Forked from
GitLab.org / GitLab FOSS
27479 commits behind the upstream repository.
import_formatter.rb 286 B
module Gitlab
class ImportFormatter
def comment(author, date, body)
"\n\n*By #{author} on #{date}*\n\n#{body}"
end
def comments_header
"\n\n\n**Imported comments:**\n"
end
def author_line(author)
"*Created by: #{author}*\n\n"
end
end
end