BigW Consortium Gitlab

markup.rb 236 Bytes
Newer Older
Douwe Maan committed
1 2 3 4 5 6 7
module BlobViewer
  class Markup < Base
    include Rich
    include ServerSide

    self.partial_name = 'markup'
    self.extensions = Gitlab::MarkupHelper::EXTENSIONS
8
    self.file_types = %i(readme)
9
    self.binary = false
Douwe Maan committed
10 11
  end
end