Class: HTML::Sanitizer
- Inherits:
-
Object
show all
- Defined in:
- lib/action_controller/vendor/html-scanner/html/sanitizer.rb
Instance Method Summary
collapse
Instance Method Details
#sanitize(text, options = {}) ⇒ Object
3
4
5
6
|
# File 'lib/action_controller/vendor/html-scanner/html/sanitizer.rb', line 3
def sanitize(text, options = {})
return text unless sanitizeable?(text)
tokenize(text, options).join
end
|
#sanitizeable?(text) ⇒ Boolean
8
9
10
|
# File 'lib/action_controller/vendor/html-scanner/html/sanitizer.rb', line 8
def sanitizeable?(text)
!(text.nil? || text.empty? || !text.index("<"))
end
|