nokogiri: how to insert tbody tag immediately after table tag ?
- by wefwgeweg
i want to make sure all table's immediate child is tbody....
how can i write this with xpath or nokogiri ?
doc.search("//table/").each do |j|
new_parent = Nokogiri::XML::Node.new('tbody',doc)
j.replace new_parent
new_parent << j
end