diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-30 16:39:16 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-30 16:39:16 +0200 |
| commit | ff25573224400673d08b31e576d5a0d87751dbe1 (patch) | |
| tree | 7a0df37b627a238250ffca454d1dd78dc765cedb /tests/typ/utility/strings.typ | |
| parent | e4e79990dad90aea17ea99e54fcd60435927bb56 (diff) | |
Lower- and uppercase string conversion functions
Diffstat (limited to 'tests/typ/utility/strings.typ')
| -rw-r--r-- | tests/typ/utility/strings.typ | 8 |
1 files changed, 8 insertions, 0 deletions
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("Ελλάδα"), "ΕΛΛΆΔΑ") |
