summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 781b999..2caefeb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,12 +7,12 @@
//! little slow. This care implements a subset of the functionality of
//! ikiwiki in Rust, for speed.
-pub mod site;
-pub mod page;
-pub mod error;
-pub mod token;
-pub mod parser;
-pub mod wikitext;
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;