Method: Nokogiri::XML::Node#content?
- Defined in:
- lib/ryoba/nokogiri/xml/node.rb
#content? ⇒ String? Also known as: inner_text?
Equivalent to .content.strip
, but returns nil if the result is an empty string.
24 25 26 27 |
# File 'lib/ryoba/nokogiri/xml/node.rb', line 24 def content? result = self.content.strip result unless result.empty? end |