This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
A Fast, Enjoyable HTML Parser for Ruby
Hpricot is a very flexible HTML parser, based on Tanaka Akira’s HTree and John Resig’s jQuery, but with the scanner recoded in C. I’ve borrowed (what I believe to be) the best ideas from these wares to make Hpricot heaps of fun to use.
# load the Family guy's home page
require "hpricot" # need hpricot and open-uri
require "open-uri"
doc = Hpricot(open("http://www.fox.com/familyguy/index.htm"))
# change the CSS class on list element ul
(doc/"ul.site-nav").set("class", "new-site-nav")
# remove the header
(doc/"#header").remove
# print the altered HTML
puts doc
A Proper Start
- Installing Hpricot, both stable and development versions.
- An Hpricot Showcase with recipes for most common things.
- Wonder what’s happening? Check the commit list.






