debian-mirror-gitlab/app/models/blob_viewer/markup.rb

11 lines
203 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module BlobViewer
class Markup < Base
include Rich
include ServerSide
self.partial_name = 'markup'
self.extensions = Gitlab::MarkupHelper::EXTENSIONS
self.binary = false
end
end