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
//! CSS Selector Engine Module
//!
//! This module provides CSS selector functionality for querying HTML elements.
//! It includes compilation, selection, and matching capabilities.

pub mod api;
pub mod attributes;
pub mod compile;
pub mod convert;
pub mod general;
pub mod helpers;
pub mod legacy;
pub mod types;

// Re-export public API
pub use api::*;