nipper 0.1.9

HTML manipulation with CSS seletors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(dead_code)]
use nipper::Document;

pub fn doc() -> Document {
    include_str!("../test-pages/page.html").into()
}

pub fn docwiki() -> Document {
    include_str!("../test-pages/rustwiki.html").into()
}

pub fn doc2() -> Document {
    include_str!("../test-pages/page2.html").into()
}