aphid 0.2.2

A static site generator for blogs and wikis, with wiki-links across both.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod frontmatter;
pub mod page;
pub mod site;
pub mod slug;

pub use frontmatter::{BlogFrontmatter, PageFrontmatter, WikiFrontmatter};
pub use page::{Page, PageKind, PageView};
pub use site::HomePage;
pub use site::NotFoundPage;
pub use site::Site;
pub use slug::Slug;