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
//! Text wrapping functionality for Markdown output.
//!
//! This module provides text wrapping capabilities similar to Python's `textwrap.fill()`,
//! specifically designed to work with Markdown content while preserving formatting.

pub use sync::wrap_markdown;

mod sync;
mod utils;