Module:DailyRandom: Revision history

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.

28 September 2025

  • curprev 22:3522:35, 28 September 2025 Wikilah admin talk contribs 1,575 bytes +1,575 Created page with "-- Module:DailyRandom local p = {} local function mergeArgs(frame) local args = {} local parent = frame:getParent() if parent then for k,v in pairs(parent.args) do args[k] = v end end for k,v in pairs(frame.args) do args[k] = v end return args end local function daySeed(frame, tz, salt) tz = tz or 'Asia/Singapore' local ymd = frame:preprocess(string.format('{{#time:Ymd|now|%s}}', tz)) return (salt or '') .. ymd end function p.list(frame) local args = mer..."