Added if_solutions methods
All checks were successful
CI / Typst formatting (push) Successful in 9s
CI / Typos (push) Successful in 17s
CI / Build (push) Successful in 15m19s

Reviewed-on: #5
Co-authored-by: Mark <mark@betalupi.com>
Co-committed-by: Mark <mark@betalupi.com>
This commit is contained in:
2025-01-23 13:08:50 -08:00
committed by Mark
parent ede934369b
commit b9751385d1
4 changed files with 13 additions and 9 deletions

View File

@ -137,7 +137,11 @@
}
}
#let notsolution(content) = {
#let if_solutions(content) = {
if show_solutions { content }
}
#let if_no_solutions(content) = {
if not show_solutions { content }
}