Module:Tabber: 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.

26 February 2024

25 February 2024

  • curprev 16:0416:04, 25 February 2024Vish talk contribs 411 bytes +411 Created page with "local p = {} function getArgCount(args) i = 0 for inc, val in ipairs(args) do i = i + 1 end return i end function p.main(frame) parentArgs = frame:getParent().args content = "" for i = 1, getArgCount(parentArgs), 2 do if i ~= 1 then content = content .. "|-|" end content = content .. parentArgs[i] .. "=" .. parentArgs[i+1] end return frame:extensionTag('tabber', content) end return p"