summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 00000000..2959925e
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,11 @@
+//! Typeset is a library for compiling _plain-text_ strings written in the
+//! corresponding typesetting language into a typesetted document in a
+//! file format like _PDF_.
+
+#![allow(unused)]
+
+pub mod parsing;
+pub mod doc;
+pub mod font;
+pub mod pdf;
+pub mod utility;