node-html-parser 0.1.1

Fast HTML parser for Rust & WASM producing a lightweight DOM with CSS selector querying.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HTML Element Module
//!
//! This module contains HTML element functionality split into focused submodules.
//! Each submodule handles specific aspects of element behavior and manipulation.

pub mod attributes;
pub mod class_list;
pub mod content;
pub mod main; // base struct & core methods
pub mod normalize;
pub mod serialize; // to / from html
pub mod text_ops;
pub mod tree; // attribute normalization utilities

pub use main::*;
pub(super) use normalize::normalize_attr_quotes;