Module:Year category type: 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.

12 May 2022

17 December 2021

  • curprev 23:3323:33, 17 December 2021en>Centrist16 523 bytes +523 Created page with "local p = {} local units = { year = "^%d*$", year_bc = "^%d* BC$", year_ad = "^AD %d*$", decade = "^%d*0s$", decade_bc = "^%d*0s BC$", century = "^%d*[snrt][tdh].century$", century_bc = "^%d*[snrt][tdh].century BC$", millennium = "^%d*[snrt][tdh].millennium$", millennium_bc = "^%d*[snrt][tdh].millennium BC$", } function p.main(frame) local title = mw.title.getCurrentTitle().text for unit, pattern in pairs(units) do if string.match(title, pattern) then..."