blob: 924d75e420072e75920961a7ea04fe47b1f0db0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! Typeset is a library for compiling documents written in the
//! corresponding typesetting language into a typesetted document in an
//! output format like _PDF_.
mod pdf;
mod utility;
pub mod parsing;
pub mod doc;
/// Writing of documents into supported formats.
pub mod export {
pub use crate::pdf::WritePdf;
}
|