blob: d50c19f967579dc8b6dadcf6100e8b370d0c3454 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
//! 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 pdf;
pub mod utility;
|