typstify-core 0.1.3

Core types and configuration for Typstify
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Typstify Core Library
//!
//! Core types, configuration, and error handling for the Typstify static site generator.

pub mod config;
pub mod content;
pub mod error;
pub mod frontmatter;

pub use config::Config;
pub use content::{ContentPath, ContentType, Page, ParsedContent};
pub use error::{CoreError, Result};
pub use frontmatter::Frontmatter;