Module:VerticalGrid: Revision history

Jump to navigation Jump to search

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.

27 November 2025

  • curprev 16:4816:48, 27 November 2025HyperNervie talk contribs 460 bytes +460 Created page with "local p = {} function p.rowNumbers(frame) local args = frame:getParent().args local res = "" local function addRow(s) res = res .. frame:expandTemplate{ title = "VerticalGridCell", args = {s, class = "vgc-row-number"} } end if type(args.heading) == "string" then addRow(args.heading) end for i = 1, tonumber(args[1]) or 0 do addRow(i) end return res end return p"