require 'hpricot'html = < This is the page title Big heading! A paragraph of text. Item 1 in a listItem 2Item3END_OF_HTMLdoc = Hpricot(html)puts doc.search("h1").first.inner_html
A paragraph of text.