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

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

module Banzai
  module Pipeline
    class PlainMarkdownPipeline < BasePipeline
      def self.filters
        [
          Filter::MarkdownFilter
        ]
      end
    end
  end
end