blob: edc8f876d6b74ab68bda4d176d1a29fbe034fd32 (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActionText
module Attachments
module Minification
extend ActiveSupport::Concern
class_methods do
def fragment_by_minifying_attachments(content)
Fragment.wrap(content).replace(ActionText::Attachment::SELECTOR) do |node|
node.tap { |n| n.inner_html = "" }
end
end
end
end
end
end
|