From 815a4fea7b86e6763c1033cbf06722fbb39f586d Mon Sep 17 00:00:00 2001 From: David Vogel Date: Mon, 3 Nov 2025 19:45:57 +0100 Subject: [PATCH] Add some test files. --- test-files/hello-world-template.typ | 5 +++++ test-files/hello-world.typ | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 test-files/hello-world-template.typ create mode 100644 test-files/hello-world.typ diff --git a/test-files/hello-world-template.typ b/test-files/hello-world-template.typ new file mode 100644 index 0000000..aca35aa --- /dev/null +++ b/test-files/hello-world-template.typ @@ -0,0 +1,5 @@ +#let template() = { + set page(width: auto, height: auto, margin: 5mm) + + heading("Hello World!") +} diff --git a/test-files/hello-world.typ b/test-files/hello-world.typ new file mode 100644 index 0000000..69d5210 --- /dev/null +++ b/test-files/hello-world.typ @@ -0,0 +1,3 @@ +#set page(width: auto, height: auto, margin: 5mm) + +#heading("Hello World!")