fast_h2m 0.4.1

High-performance HTML to Markdown converter
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;