summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/html_entity_filter.rb
blob: 406c2d3c96b627ac8584d728e3d217ebad417f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'erb'

module Banzai
  module Filter
    # Text filter that escapes these HTML entities: & " < >
    class HtmlEntityFilter < HTML::Pipeline::TextFilter
      def call
        ERB::Util.html_escape(text)
      end
    end
  end
end