mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00

Such as those with IDN homographs or embedded right-to-left (RTLO) characters. Autolinked hrefs should be escaped
22 lines
451 B
Ruby
22 lines
451 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Banzai
|
|
module Pipeline
|
|
class EmailPipeline < FullPipeline
|
|
def self.filters
|
|
super.tap do |filter_array|
|
|
filter_array.delete(Banzai::Filter::ImageLazyLoadFilter)
|
|
end
|
|
end
|
|
|
|
def self.transform_context(context)
|
|
super(context).merge(
|
|
only_path: false,
|
|
emailable_links: true,
|
|
no_sourcepos: true
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|