ox_content_renderer 2.72.0

Markdown renderer for Ox Content
Documentation
//! HTML renderer implementation.
//!
//! The renderer is organized as a small public facade with focused internal modules:
//! options, escaping, autolinking, code annotations, heading/TOC helpers, and visitor
//! rendering. This keeps each implementation file near a reviewable size while
//! preserving the crate-level `HtmlRenderer` API.

mod autolink;
mod callout;
mod code_annotations;
mod escape;
mod heading;
mod html_attr;
mod options;
mod renderer;
mod toc;

#[cfg(test)]
mod tests;

pub use options::{CodeAnnotationSyntax, HtmlRendererOptions};
pub use renderer::HtmlRenderer;