diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-05-18 16:31:22 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-05-18 16:31:22 +0200 |
| commit | 72434f069577901f006e8df38c4faeed47b25867 (patch) | |
| tree | a2903f7c546f29826d6a055880a0c63b7273d4b5 /src/library/mod.rs | |
| parent | 6b08862b83950c32890858431a680f4069cee439 (diff) | |
Min and max functions
Diffstat (limited to 'src/library/mod.rs')
| -rw-r--r-- | src/library/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs index 5018f0b4..2cfe02ba 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -9,6 +9,7 @@ mod font; mod image; mod lang; mod markup; +mod math; mod pad; mod page; mod par; @@ -21,6 +22,7 @@ pub use basic::*; pub use font::*; pub use lang::*; pub use markup::*; +pub use math::*; pub use pad::*; pub use page::*; pub use par::*; @@ -69,6 +71,8 @@ pub fn _new() -> Scope { func!("h", h); func!("image", image); func!("lang", lang); + func!("max", max); + func!("min", min); func!("pad", pad); func!("page", page); func!("pagebreak", pagebreak); |
