From 4d1bbcab53439dc8d423d6595d22d1a6258d39da Mon Sep 17 00:00:00 2001 From: servostar Date: Wed, 20 Nov 2024 10:32:48 +0100 Subject: [PATCH] fix: left align glossary entries (#73) --- src/glossarium.typ | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/glossarium.typ b/src/glossarium.typ index d4ceedb..2da8c9d 100644 --- a/src/glossarium.typ +++ b/src/glossarium.typ @@ -199,7 +199,8 @@ SOFTWARE.*/ #block( below: 1.5em, - par(hanging-indent: 1em)[ + width: 100%, + par(hanging-indent: 1em, align(left)[ #text(weight: "bold", entry.short) #if hasLong and hasDesc [ (#text(entry.long)) @@ -238,7 +239,7 @@ SOFTWARE.*/ ) .join(", ") } - ], + ]), ) ] }