1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! # Markdown Frontmatter
//!
//! Parse the frontmatter section in the Markdown file.
//!
//! **Note**: This crate will not modify the markdown file itself.
mod readable;
mod field;

pub use field::*;
pub use readable::ReadableDate;