Hello,
When I do the following thing with nokogiri:
some_html = '<img src="bleh.jpg"/>test<br/>'
f = Nokogiri::HTML(some_html)
#do some processing
puts f
It will print the whole xhtml doc structure with the upper code in it. How can I just print/return/get the html part which is in some_html variable?
Thanks for help!