summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: be6e4a94bc9c4b74855cf780d6a2ee7f5e6b9363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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 directive;
pub mod error;
pub mod git;
pub mod html;
pub mod name;
pub mod page;
pub mod pagespec;
pub mod parser;
pub mod site;
pub mod srcdir;
pub mod time;
pub mod token;
pub mod util;
pub mod wikitext;
pub mod version;