/*
SPDX-License-Identifier: MIT OR Apache-2.0
SPDX-FileCopyrightText: © 2023-2026 Bruce D'Arcus and Citum contributors
*/
//! Block-aware markup renderer for terminal formats (Typst, LaTeX).
//!
//! Provides a format-neutral event model plus source adapters
//! for Djot (via `jotdown`) and Markdown (via `pulldown_cmark`), and a renderer
//! that maps events to [`OutputFormat`] methods.
pub use render_djot_body;
pub use render_markdown_body;