htmlparser 0.2.1

Pull-based, zero-allocation HTML parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate htmlparser as html;

#[macro_use]
mod token;

mod api;
mod cdata;
mod comments;
mod condition;
mod doctype;
mod document;
mod elements;
mod pi;
mod text;