summaryrefslogtreecommitdiff
path: root/library/src/math/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-01-28 23:13:11 +0100
committerLaurenz <laurmaedje@gmail.com>2023-01-28 23:15:03 +0100
commit76048a8ef45ac5892235f2e69cb7cb6c35a037e4 (patch)
treeb882d3d209ae50f8849a94b38e8945e0b8330f03 /library/src/math/mod.rs
parent406de22ee5cd74dc6f67743bad4710415bb50c41 (diff)
Overline, Underline, Overbracket, Underbracket
Diffstat (limited to 'library/src/math/mod.rs')
-rw-r--r--library/src/math/mod.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs
index 4c002cea..2d914c31 100644
--- a/library/src/math/mod.rs
+++ b/library/src/math/mod.rs
@@ -5,7 +5,6 @@ mod ctx;
mod accent;
mod align;
mod attach;
-mod braced;
mod frac;
mod fragment;
mod lr;
@@ -14,6 +13,7 @@ mod op;
mod root;
mod row;
mod spacing;
+mod stack;
mod stretch;
mod style;
mod symbols;
@@ -21,12 +21,12 @@ mod symbols;
pub use self::accent::*;
pub use self::align::*;
pub use self::attach::*;
-pub use self::braced::*;
pub use self::frac::*;
pub use self::lr::*;
pub use self::matrix::*;
pub use self::op::*;
pub use self::root::*;
+pub use self::stack::*;
pub use self::style::*;
use ttf_parser::GlyphId;
@@ -65,8 +65,12 @@ pub fn module(sym: &Module) -> Module {
math.def_func::<ScriptsNode>("scripts");
math.def_func::<LimitsNode>("limits");
math.def_func::<AccentNode>("accent");
+ math.def_func::<UnderlineNode>("underline");
+ math.def_func::<OverlineNode>("overline");
math.def_func::<UnderbraceNode>("underbrace");
math.def_func::<OverbraceNode>("overbrace");
+ math.def_func::<UnderbracketNode>("underbracket");
+ math.def_func::<OverbracketNode>("overbracket");
// Fractions and matrix-likes.
math.def_func::<FracNode>("frac");