mirror of
https://github.com/typst/typst
synced 2025-07-28 14:57:54 +08:00
21 lines
312 B
Rust
21 lines
312 B
Rust
//! Typst's layout engine.
|
|
|
|
mod flow;
|
|
mod grid;
|
|
mod image;
|
|
mod inline;
|
|
mod lists;
|
|
mod math;
|
|
mod modifiers;
|
|
mod pad;
|
|
mod pages;
|
|
mod repeat;
|
|
mod rules;
|
|
mod shapes;
|
|
mod stack;
|
|
mod transforms;
|
|
|
|
pub use self::flow::{layout_fragment, layout_frame};
|
|
pub use self::pages::layout_document;
|
|
pub use self::rules::register;
|