13 lines
230 B
Ruby
13 lines
230 B
Ruby
|
module Banzai
|
||
|
module Pipeline
|
||
|
class AtomPipeline < FullPipeline
|
||
|
def self.transform_context(context)
|
||
|
super(context).merge(
|
||
|
only_path: false,
|
||
|
xhtml: true
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|