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

16 lines
291 B
Ruby

# frozen_string_literal: true
module Banzai
module Pipeline
class AtomPipeline < FullPipeline
def self.transform_context(context)
super(context).merge(
only_path: false,
xhtml: true,
no_sourcepos: true
)
end
end
end
end