orbit-md 0.1.0

Fast static site generator with React-like Markdown components
Documentation
1
2
3
4
5
6
7
//! Data models for configuration, front matter, and page lifecycle states.

mod front_matter;
mod page;

pub use front_matter::FrontMatter;
pub use page::{CompiledPage, RenderedPage, SourcePage, UncompiledPage};