aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2024-11-11 10:23:18 -0800
committerJohn MacFarlane <[email protected]>2024-11-11 10:23:18 -0800
commitbe734d2543517a28bed7fef9b82d46dea56a61ea (patch)
tree7c1f90e1c0ddf2fb69507d50345a3ef06aee4f18 /data
parent13d37b4713b239169e8a1008952f717d483897d9 (diff)
Remove definitions.typst partial.
Remove unnecessary definition of `endnote`. Incorporate the one remaining definition into `default.typst`.
Diffstat (limited to 'data')
-rw-r--r--data/templates/default.typst2
-rw-r--r--data/templates/definitions.typst8
2 files changed, 1 insertions, 9 deletions
diff --git a/data/templates/default.typst b/data/templates/default.typst
index 6b0e305fc..79b2c33f5 100644
--- a/data/templates/default.typst
+++ b/data/templates/default.typst
@@ -1,4 +1,4 @@
-$definitions.typst()$
+#let horizontalrule = line(start: (25%,0%), end: (75%,0%))
#show terms: it => {
it.children
diff --git a/data/templates/definitions.typst b/data/templates/definitions.typst
deleted file mode 100644
index a6deba053..000000000
--- a/data/templates/definitions.typst
+++ /dev/null
@@ -1,8 +0,0 @@
-// Some definitions presupposed by pandoc's typst output.
-#let horizontalrule = [
- #line(start: (25%,0%), end: (75%,0%))
-]
-
-#let endnote(num, contents) = [
- #stack(dir: ltr, spacing: 3pt, super[#num], contents)
-]