thesis/4_rasta/X_lib.typ
Jean-Marie 'Histausse' Mineau 1ee8013522
Some checks failed
/ test_checkout (push) Failing after 20s
small refactor
2025-06-26 17:38:02 +02:00

22 lines
436 B
Typst

#let ok = text(fill: olive, sym.checkmark)
#let okk = text(fill: olive, tracking: -5pt, sym.checkmark+sym.checkmark)
#let bad = text(fill: orange, sym.circle.stroked.small)
#let ko = text(fill: maroon, sym.crossmark)
#let nr = sym.dash.en
#let str2sym(s) = {
if s == "ok" {
ok
} else if s == "okk" {
okk
} else if s == "bad" {
bad
} else if s == "ko" {
ko
} else if s == "nr" {
nr
} else {
s
}
}