//! Document rendering for NAHPU Markdown, Typst, and PDF exports.
/// Structures and formats exports as Typst and Markdown documents.
/// Contains the data models used for deserializing database records.
/// Provides the integration with the Typst compiler to render `.typ` code into `.pdf` binaries.
/// The current version of the `nahpu_export` crate, derived from the Cargo package version.
pub const VERSION: &str = env!;
pub use DocumentRenderer;
pub use markdown_to_typst;
pub use ExportError;
pub use *;
pub use TypstCompiler;