htmlite 0.12.0

An HTML manipulation toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(unreachable_pub)]

mod input_stream;
mod node;
mod parser;
mod selector;
mod tokenizer;

pub use crate::{
    node::{Descendants, Node, NodeArena, NodeKind, Selection},
    parser::{ParserError, parse},
};

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
#[allow(unused)]
struct ReadmeTests;