summaryrefslogtreecommitdiff
path: root/src/model/mod.rs
blob: 07329e3f305c3504921f8d072a87d5e939dc8246 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The document model.

#[macro_use]
mod styles;
mod content;
mod realize;
mod typeset;

pub use self::content::*;
pub use self::realize::*;
pub use self::styles::*;
pub use self::typeset::*;

#[doc(hidden)]
pub use once_cell;
pub use typst_macros::node;