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

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

module Banzai
  module Pipeline
    class RelativeLinkPipeline < BasePipeline
      def self.filters
        FilterArray[
          Filter::RelativeLinkFilter
        ]
      end
    end
  end
end