Module:IDF Pro Tour Rankings: 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.

11 April 2026

  • curprev 09:0509:05, 11 April 2026Mob talk contribs 608 bytes +608 Created page with "local p = {} local data = require("Module:IDF Pro Tour Rankings/data") function p.main(frame) local output = {} table.insert(output, '{| class="wikitable sortable"') table.insert(output, '! Rank !! Player !! Earnings') for _, player in ipairs(data.rankings) do table.insert(output, '|-') table.insert(output, '| ' .. player[2] .. ' || [[' .. player[1] .. ']] || ' .. player[3]) end table.insert(output, '|}') return table.con..."