2018-10-06 19:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-12-15 09:51:16 -05:00
|
|
|
module Banzai
|
|
|
|
module Pipeline
|
|
|
|
class AtomPipeline < FullPipeline
|
|
|
|
def self.transform_context(context)
|
|
|
|
super(context).merge(
|
|
|
|
only_path: false,
|
2018-12-20 21:22:27 -05:00
|
|
|
xhtml: true,
|
|
|
|
no_sourcepos: true
|
2015-12-15 09:51:16 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|