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: 8fdbab30dd1a9a5e3e244b6ba0e67e0dc28242ca (plain)
1
2
3
4
5
6
7
8
9
10
module BlobViewer
  class Markup < Base
    include Rich
    include ServerSide

    self.partial_name = 'markup'
    self.extensions = Gitlab::MarkupHelper::EXTENSIONS
    self.binary = false
  end
end