Remove dead Gitlab::Markdown::Pipeline
class
This commit is contained in:
parent
b83dcd3a30
commit
3a8c548e73
1 changed files with 0 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
|||
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
|
Loading…
Reference in a new issue