gitlab-org--gitlab-foss/app/models/blob_viewer/markup.rb
2017-04-27 12:23:26 -05:00

10 lines
203 B
Ruby

module BlobViewer
class Markup < Base
include Rich
include ServerSide
self.partial_name = 'markup'
self.extensions = Gitlab::MarkupHelper::EXTENSIONS
self.binary = false
end
end