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: a5b1cbdd030574200b33615a7a13586a98064a64 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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