Welcome to mirror list, hosted at ThFree Co, Russian Federation.

markup.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33b59c4f5120f0e7a2f27431655700bc2f73b0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
module BlobViewer
  class Markup < Base
    include Rich
    include ServerSide

    self.partial_name = 'markup'
    self.extensions = Gitlab::MarkupHelper::EXTENSIONS
    self.file_types = %i(readme)
    self.binary = false
  end
end