Module:TitleCase: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 December 2024

  • curprev 16:0016:00, 6 December 2024IssuePress talk contribs 204 bytes +204 Created page with "local p = {} function p.titleCase(frame) local text = frame.args[1] or "" return text:gsub("(%a)([%w]*)", function(first, rest) return first:upper() .. rest:lower() end) end return p"