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
//! Text processing module for HTML to Markdown conversion.
//!
//! This module provides utilities for normalizing, escaping, and processing text content
//! extracted from HTML documents during the conversion to Markdown format.

mod processing;

pub use processing::dedent_code_block;