summaryrefslogtreecommitdiff
path: root/src/library/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/mod.rs')
-rw-r--r--src/library/mod.rs4
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);