//! The standard library for the _Typst_ language. use crate::func::Scope; mod structure; mod style; pub use structure::*; pub use style::*; /// Create a scope with all standard functions. pub fn std() -> Scope { let mut std = Scope::new(); std.add::("align"); std.add::("box"); std.add::("line.break"); std.add::("n"); std.add::("page.break"); std.add::("h"); std.add::("v"); std.add::("bold"); std.add::("italic"); std.add::("mono"); std }