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

full_pipeline.rb « pipeline « markdown « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3b7a3c27c016115c2b75383ea99894d368b3dfa (plain)
1
2
3
4
5
6
7
8
9
require 'gitlab/markdown'

module Gitlab
  module Markdown
    class FullPipeline < CombinedPipeline.new(PlainMarkdownPipeline, GfmPipeline)

    end
  end
end