I would like to parse a table using Nokogiri. I\'m doing it this way
def parse_table_nokogiri(html) doc = Nokogiri::HTML(html) doc.search(\'table &
Simple:
doc.search('//td').each do |cell| puts cell.content end