Flowdock
method

sanitize

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: HTML::Sanitizer
sanitize(text, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/vendor/html-scanner/html/sanitizer.rb, line 7
    def sanitize(text, options = {})
      validate_options(options)
      return text unless sanitizeable?(text)
      tokenize(text, options).join
    end
Register or log in to add new notes.