Welcome to mirror list, hosted at ThFree Co, Russian Federation.

html_entity_filter.rb « filter « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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