code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(37 lines)
1 '\" t
2 .\" Copyright (c) 2025 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Text.lower 3 2025-11-29 "Tomo man-pages"
6 .SH NAME
7 Text.lower \- convert to lowercase
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Text.lower\ :\ func(text:\ Text,\ language:\ Text\ =\ "C"\ ->\ Text)
13 .fi
14 .SH DESCRIPTION
15 Converts all characters in the text to lowercase.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx lb
23 l l l l.
24 Name Type Description Default
25 text Text The text to be converted to lowercase. -
26 language Text The ISO 639 language code for which casing rules to use. "C"
27 .TE
28 .SH RETURN
29 The lowercase version of the text.
31 .SH EXAMPLES
32 .EX
33 assert "AMÉLIE".lower() == "amélie"
34 assert "I".lower(language="tr_TR") == "ı"
35 .EE
36 .SH SEE ALSO
37 .BR Tomo-Text (3)