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

Module:Utils: Revision history

From MCC Island Wiki

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.

30 August 2025

  • curprev 17:0917:09, 30 August 2025 MTOnline talk contribs 633 bytes +633 Created page with "local utils = {} function utils.expand(frame, title, ...) local args = {...} local templateArgs = {} for i, arg in ipairs(args) do if type(arg) == "string" and arg:match("^[^=]+=.+$") then local key, value = arg:match("^([^=]+)=(.+)$") templateArgs[key] = value else templateArgs[i] = tostring(arg) end end if frame.expandTemplate then return frame:expandTemplate{ title = title, args = templateArgs } else local argString = {} for i, arg in i..."