nahpu_export 0.1.0

A utility crate for exporting Nahpu project data into documents (Markdown, Typst, PDF).
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(missing_docs)]
//! `nahpu_export` provides functionality for rendering database exports into formats like Markdown, Typst, and PDF.

/// Contains the core logic for structuring and formatting exports into Typst and Markdown documents.
pub mod document;
/// Contains the data models used for deserializing database records.
pub mod models;
/// Provides the integration with the Typst compiler to render `.typ` code into `.pdf` binaries.
pub mod typst_compiler;

pub use document::DocumentExport;
pub use models::*;