rquery 0.2.1

A simple implementation of a HTML/XML DOM tree which allows simple operations like querying by CSS selectors, makes dealing with XML files less painful.
Documentation
# rquery

[![Build Status](https://travis-ci.org/yggie/rquery.svg?branch=master)](https://travis-ci.org/yggie/rquery)
[![docs](https://img.shields.io/badge/documentation-rust_beta-6495ed.svg?style=flat-square)](https://yggie.github.io/rust-xml-query/rquery)
[![crates.io](https://img.shields.io/crates/v/rquery.svg)](https://crates.io/crates/rquery)
[![license](https://img.shields.io/crates/l/rquery.svg)](/LICENSE)

A simple implementation of a HTML/XML DOM tree which allows simple operations
like querying by CSS selectors, makes dealing with XML files less painful.

## Example

```rust
extern crate rquery;

use rquery::Document;

fn main() {
  let document = Document::new_from_xml_file("tests/fixtures/sample.xml").unwrap();

  let title = document.select("title").unwrap();
  assert_eq!(title.text(), "Sample Document");
  assert_eq!(title.attr("ref").unwrap(), "main-title");

  let item_count = document.select_all("item").unwrap().count();
  assert_eq!(item_count, 2);

  let item_titles = document.select_all("item > title").unwrap()
    .map(|element| element.text().clone())
    .collect::<Vec<String>>()
    .join(", ");
  assert_eq!(item_titles, "Another Sample, Other Sample");
}
```