module Hpricot::Traverse
def previous
Returns to node neighboring this node to the north: just above it.
def previous sib = parent.children x = sib.index(self) - 1 sib[x] if sib and x >= 0 end
def previous sib = parent.children x = sib.index(self) - 1 sib[x] if sib and x >= 0 end