Module:TitleCase: Revision history

From RosieSoCrossing

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.

12 January 2026

  • curprev 15:3615:36, 12 January 2026 Rosie talk contribs 2,968 bytes +2,968 Created page with "local p = {} local getArgs = require('Module:Arguments').getArgs function search(category, substrings) for k,v in pairs(substrings) do if string.find(category, v) then return true end end return false end -- From Lua-User Wiki: http://lua-users.org/wiki/SciteTitleCase function titlecase(str) local titleName = '' local buf = {} local inWord = false for i = 1, #str do local c = string.sub(str, i, i) if inWord then table...."