# Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ class HtmlSanitizer class AdjustInlineImageSize def sanitize(string) Loofah .fragment(string) .scrub!(HtmlSanitizer::Scrubber::Outgoing::ImageSize.new) .to_html end end end