fast_h2m 0.4.2

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