summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 2959925e859c06f401a25e0b445eec0d406b2b6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;