summaryrefslogtreecommitdiff
path: root/crates/typst-library/src/html/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/typst-library/src/html/mod.rs')
-rw-r--r--crates/typst-library/src/html/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/typst-library/src/html/mod.rs b/crates/typst-library/src/html/mod.rs
index 1d88781c..7fc8adec 100644
--- a/crates/typst-library/src/html/mod.rs
+++ b/crates/typst-library/src/html/mod.rs
@@ -1,6 +1,7 @@
//! HTML output.
mod dom;
+mod typed;
pub use self::dom::*;
@@ -14,6 +15,7 @@ pub fn module() -> Module {
html.start_category(crate::Category::Html);
html.define_elem::<HtmlElem>();
html.define_elem::<FrameElem>();
+ self::typed::define(&mut html);
Module::new("html", html)
}