Module:Year category type
Appearance
![]() | Module rating is invalid or not specified. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
Used in Template:Year category header to detect the year type in the category name.
Usage
{{#invoke:Year category type|main}}
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
return unit
end
end
return -1
end
return p