From 1eb0de2f9470323fa4f1017de52241e31e20116a Mon Sep 17 00:00:00 2001 From: David Allemang Date: Wed, 29 Jul 2026 12:38:23 -0400 Subject: [PATCH] hide todos --- lib.typ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.typ b/lib.typ index 2a9ecee4..aa79eaff 100644 --- a/lib.typ +++ b/lib.typ @@ -14,7 +14,7 @@ #let note = callout.with(kind: "note", label: "Note") #let todo(label, ..args) = { - callout(args.pos().join(), kind: "todo", label: "[TODO] " + label, outlined: true) + // callout(args.pos().join(), kind: "todo", label: "[TODO] " + label, outlined: true) } #let example(body) = todo("example", body)