summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: b78fda22e8b9640a4f53266a6139c09462b46f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! A static web site generator similar to ikiwiki
//!
//! [ikiwiki]: http://ikiwiki.info/
//!
//! ikiwiki is a "wiki compiler" that can also be used as a static
//! site generator. It's written mostly in Perl, and works well, if a
//! little slow. This care implements a subset of the functionality of
//! ikiwiki in Rust, for speed.

pub mod name;
pub mod directive;
pub mod error;
pub mod html;
pub mod page;
pub mod parser;
pub mod site;
pub mod token;
pub mod util;
pub mod wikitext;