Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Int: Revision history

From Teriock

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.

25 May 2025

  • curprev 23:1423:14, 25 May 2025Gpe talk contribs 426 bytes +426 Created page with "local p = {} function p.main(frame) local input = frame.args[1] or '' -- Strip wiki formatting input = mw.ustring.gsub(input, "'''''", "") -- bold+italic input = mw.ustring.gsub(input, "'''", "") -- bold input = mw.ustring.gsub(input, "''", "") -- italic -- Attempt to parse as number local num = tonumber(input) if num then return math.floor(num + 0.5) else return 0 -- default fallback end end return p"