summaryrefslogtreecommitdiff
path: root/docs/src/html.rs
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/html.rs')
-rw-r--r--docs/src/html.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/src/html.rs b/docs/src/html.rs
index a3db6393..e0b524ce 100644
--- a/docs/src/html.rs
+++ b/docs/src/html.rs
@@ -5,6 +5,7 @@ use md::escape::escape_html;
use pulldown_cmark as md;
use typed_arena::Arena;
use typst::diag::FileResult;
+use typst::eval::Datetime;
use typst::font::{Font, FontBook};
use typst::geom::{Point, Size};
use typst::syntax::{Source, SourceId};
@@ -489,4 +490,8 @@ impl World for DocWorld {
.contents()
.into())
}
+
+ fn today(&self, _: Option<i64>) -> Option<Datetime> {
+ Some(Datetime::from_ymd(1970, 1, 1).unwrap())
+ }
}