Class: Loofah::Helpers::ActionView::SafeListSanitizer

Inherits:
Object
  • Object
show all
Defined in:
lib/loofah/helpers.rb

Overview

Replacement class for Rails’s HTML::WhiteListSanitizer.

To use by default, call this in an application initializer:

  ActionView::Helpers::SanitizeHelper.safe_list_sanitizer = \
    Loofah::Helpers::ActionView::SafeListSanitizer.new

Or, to generally opt-in to Loofah's view sanitizers:

  Loofah::Helpers::ActionView.set_as_default_sanitizer

Instance Method Summary collapse

Instance Method Details

#sanitize(html, *args) ⇒ Object



95
96
97
# File 'lib/loofah/helpers.rb', line 95

def sanitize(html, *args)
  Loofah::Helpers.sanitize(html)
end

#sanitize_css(style_string, *args) ⇒ Object



99
100
101
# File 'lib/loofah/helpers.rb', line 99

def sanitize_css(style_string, *args)
  Loofah::Helpers.sanitize_css(style_string)
end