html_editor 0.7.0

Pure and simple HTML parser and editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(test)]
extern crate test;

use html_editor::parse;
use test::Bencher;

#[bench]
fn bench(b: &mut Bencher) {
    b.iter(|| {
        parse(include_str!("./bench.html")).unwrap();
    })
}