typst/tests/typ/text/case.typ
2022-11-29 14:18:13 +01:00

13 lines
291 B
Typst

// Test the `upper` and `lower` functions.
// Ref: false
---
#let memes = "ArE mEmEs gReAt?";
#test(lower(memes), "are memes great?")
#test(upper(memes), "ARE MEMES GREAT?")
#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ")
---
// Error: 8-9 expected string or content, found integer
#upper(1)