html-to-markdown-rs 3.3.3

High-performance HTML to Markdown converter using the astral-tl parser. Part of the Kreuzberg ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Utility module: helper functions for common operations.
//!
//! This module contains utility functions used across conversion logic
//! including sibling handling, content extraction, serialization, preprocessing,
//! caching, and attribute processing.
//!
//! These functions are re-exported from the main converter module to provide
//! organized access to utility functions by category.

pub mod attributes;
pub mod caching;
pub mod content;
pub mod preprocessing;
pub mod serialization;
pub mod siblings;

// Re-export commonly used functions for convenience