NeuroWiki hereby wishes Evil Neuro happy 2nd birthday on March 25, 2025!

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

14 April 2025

  • curprev 21:2421:24, 14 April 2025Selfice talk contribs 1,109 bytes +1,109 Created page with "local p = {} function p.main(frame) local args = frame:getParent().args local indices = {} -- Collect valid tab indices for k, _ in pairs(args) do local num = k:match('^bt(%d+)$') or k:match('^tab(%d+)$') if num then indices[tonumber(num)] = true end end -- Handle tab sorting local sorted = {} for k in pairs(indices) do table.insert(sorted, k) end table.sort(sorted) -- Determine the default tab posit..."