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!")