tenderlove (owner)

Revisions

gist: 227708 Download_button fork
public
Public Clone URL: git://gist.github.com/227708.git
Embed All Files: show embed
test.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'nokogiri'
 
doc = Nokogiri::HTML DATA
node = doc.at('div')
(node >> 'a').map { |n| n.text } # => ["child of div"]
 
__END__
<html>
<body>
<div>
<a>child of div</a>
<p>
<a>child of p</a>
</p>
</div>
</body>
</html>