Module:SentenceCase: 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:3415:34, 12 January 2026 Rosie talk contribs 785 bytes +785 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 function p.main(frame) local args = getArgs(frame) local name = args['1'] or '' return p.firstToUpper(name) end -- https://stackoverflow.com/questions/2421695/first-character-uppercase-lua function p.fi..."