Jump to content

Module:LowercaseFirstLetter: Revision history


For any version listed below, click on its date to view it. For more help, see Help:Page history and Help:Edit summary. (cur) = difference from current version, (prev) = difference from preceding version, m = minor edit, โ†’ = section edit, โ† = automatic edit summary

17 March 2025

8 March 2025

25 February 2025

  • curprev 16:5816:58, 25 February 2025 Xoontor talk contribs 320 bytes +320 โ†Created page with 'local p = {} function p.getModifiedTitle(frame) local title = mw.title.getCurrentTitle().text local rest = mw.ustring.sub(title, 2) if mw.ustring.find(rest, "%u") then return title else local first = mw.ustring.sub(title, 1, 1):lower() return first .. rest end end return p'