Commit d2102393 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'rs-remove-dead-markdown-pipeline' into 'master'

Remove dead `Gitlab::Markdown::Pipeline` class

See merge request gitlab-org/gitlab-ce!14487
parents 38a848be 3a8c548e
module Gitlab
module Markdown
class Pipeline
def self.[](name)
name ||= :full
const_get("#{name.to_s.camelize}Pipeline")
end
def self.filters
[]
end
def self.transform_context(context)
context
end
def self.html_pipeline
@html_pipeline ||= HTML::Pipeline.new(filters)
end
class << self
%i(call to_document to_html).each do |meth|
define_method(meth) do |text, context|
context = transform_context(context)
html_pipeline.__send__(meth, text, context) # rubocop:disable GitlabSecurity/PublicSend
end
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment