typstify_core/
lib.rs

1//! Typstify Core Library
2//!
3//! Core types, configuration, and error handling for the Typstify static site generator.
4
5pub mod config;
6pub mod content;
7pub mod error;
8pub mod frontmatter;
9
10pub use config::Config;
11pub use content::{ContentPath, ContentType, Page, ParsedContent};
12pub use error::{CoreError, Result};
13pub use frontmatter::Frontmatter;