# File lib/html/pipeline/emoji_filter.rb, line 39
      def emoji_image_filter(text)
        text.gsub(emoji_pattern) do |_match|
          emoji_image_tag(Regexp.last_match(1))
        end
      end