Skip to content

Commit

Permalink
Merge pull request #182 from TomVer99/fix/cannot-loop-over-none
Browse files Browse the repository at this point in the history
Fixed cannot loop over none error for glossary
  • Loading branch information
TomVer99 authored Nov 6, 2024
2 parents d9de5f2 + 90962d8 commit 53c650a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion template/fhict-template.typ
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@
body,
) = {
show: make-glossary
register-glossary(glossary-terms)
if glossary-terms != none {
register-glossary(glossary-terms)
}

let meta-authors = ""
let index-main(..args) = index(fmt: strong, ..args)
Expand Down

0 comments on commit 53c650a

Please sign in to comment.