class Loofah::Helpers::ActionView::SafeListSanitizer
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
Public Instance Methods
sanitize(html, *args)
click to toggle source
# File lib/loofah/helpers.rb, line 89 def sanitize(html, *args) Loofah::Helpers.sanitize html end
sanitize_css(style_string, *args)
click to toggle source
# File lib/loofah/helpers.rb, line 93 def sanitize_css(style_string, *args) Loofah::Helpers.sanitize_css style_string end