module Nokogiri::CSS

def xpath_for(selector, options = {})

Get the XPath for +selector+.
##
def xpath_for(selector, options = {})
  Parser.new(options[:ns] || {}).xpath_for(selector, options)
end