Class: Nokogiri::XML::Node

Inherits:
Object show all
Defined in:
lib/sinew/nokogiri_ext.rb

Overview

text_just_me

Instance Method Summary collapse

Instance Method Details

#text_just_meObject



19
20
21
22
# File 'lib/sinew/nokogiri_ext.rb', line 19

def text_just_me
  t = children.find { |i| i.node_type == Nokogiri::XML::Node::TEXT_NODE }
  t&.text
end