2015-12-15 09:51:16 -05:00
|
|
|
module Banzai
|
|
|
|
module Pipeline
|
|
|
|
class BasePipeline
|
|
|
|
def self.filters
|
2016-03-01 15:54:35 -05:00
|
|
|
FilterArray[]
|
2015-12-15 09:51:16 -05:00
|
|
|
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)
|
|
|
|
|
2017-08-10 12:39:26 -04:00
|
|
|
html_pipeline.__send__(meth, text, context) # rubocop:disable GitlabSecurity/PublicSend
|
2015-12-15 09:51:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|