// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 Shawn Hartsock and contributors
//! Scrybe render — Markdown-to-HTML pipeline.
//!
//! - Markdown parsing via `pulldown-cmark`
//! - Syntax highlighting via `syntect`
//! - Math placeholder extraction/injection (KaTeX-ready)
//! - Mermaid wrapper injection (Mermaid.js-ready)
//! - Theme CSS injection
pub use render_html;
pub use ;
pub use inject_mermaid_wrappers;
pub use Theme;
/// The rendered output of a document.