From c786ec2a4a3147fdf4a0ff7cf5b540087e3c669d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Mekina?= Date: Thu, 2 Oct 2025 13:34:15 +0200 Subject: [PATCH] allow content abstract type --- template/template.typ | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/template/template.typ b/template/template.typ index cec5760..e0e8b73 100644 --- a/template/template.typ +++ b/template/template.typ @@ -58,7 +58,9 @@ assert_type_signature(document, "string | none", "document kind argument"); assert_type_signature(title, "dictionary[string : string] | none", "title argument"); assert_type_signature(keywords, "dictionary[string : array[string]] | none", "keywords argument"); - assert_type_signature(abstract, "dictionary[string : string] | none", "abstract argument"); + assert_type_signature( + abstract, "dictionary[string : string | content] | none", "abstract argument" + ); assert_type_signature(author, "string | none", "author argument"); assert_type_signature(author_gender, "string | none", "author gender argument"); assert_type_signature(supervisor, "string | none", "supervisor argument");