Methods
- P
-
- S
-
Instance Public methods
Source:
show
| on GitHub
def sanitizeable?(text)
!(text.nil? || text.empty? || !((text.index("<a") || text.index("<href")) && text.index(">")))
end
Instance Protected methods
process_node(node, result, options)
Source:
show
| on GitHub
def process_node(node, result, options)
result << node.to_s unless node.is_a?(HTML::Tag) && included_tags.include?(node.name)
end