From ff25573224400673d08b31e576d5a0d87751dbe1 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 30 Aug 2021 16:39:16 +0200 Subject: Lower- and uppercase string conversion functions --- tests/typ/utility/strings.typ | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/typ/utility/strings.typ (limited to 'tests') diff --git a/tests/typ/utility/strings.typ b/tests/typ/utility/strings.typ new file mode 100644 index 00000000..7c708175 --- /dev/null +++ b/tests/typ/utility/strings.typ @@ -0,0 +1,8 @@ +// Test string functions. +// Ref: false + +--- +#let memes = "ArE mEmEs gReAt?"; +#test(lower(memes), "are memes great?") +#test(upper(memes), "ARE MEMES GREAT?") +#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ") -- cgit v1.2.3