gitlab-org--gitlab-foss/lib/banzai/pipeline/pre_process_pipeline.rb

23 lines
462 B
Ruby

# frozen_string_literal: true
module Banzai
module Pipeline
class PreProcessPipeline < BasePipeline
def self.filters
FilterArray[
Filter::NormalizeSourceFilter,
Filter::TruncateSourceFilter,
Filter::FrontMatterFilter,
Filter::BlockquoteFenceFilter,
]
end
def self.transform_context(context)
context.merge(
pre_process: true
)
end
end
end
end