(39 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.title 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.title \- titlecase8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.title\ :\ func(text:\ Text,\ language:\ Text\ =\ "C"\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Converts the text to title case (capitalizing the first letter of each word).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 text Text The text to be converted to title case. -26 language Text The ISO 639 language code for which casing rules to use. "C"27 .TE28 .SH RETURN29 The text in title case.31 .SH EXAMPLES32 .EX33 assert "amélie".title() == "Amélie"35 # In Turkish, uppercase "i" is "İ"36 assert "i".title(language="tr_TR") == "İ"37 .EE38 .SH SEE ALSO39 .BR Tomo-Text (3)