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

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

module Banzai
  module Pipeline
    class FullPipeline < CombinedPipeline.new(PlainMarkdownPipeline, GfmPipeline)

    end
  end
end