Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:DateCategory

From Gerald R. Lucas
Revision as of 09:09, 29 March 2025 by Grlucas (talk | contribs) (For the EntryHead template.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:DateCategory/doc

local p = {}

function p.monthYear(frame)
    local date = frame.args[1]
    if not date or #date < 6 then
        return '[[Category:Unknown]]'
    end

    local year = string.sub(date, 1, 4)
    local month = string.sub(date, 5, 6)

    return string.format('[[Category:%s/%s]]', month, year)
end

function p.fullDate(frame)
    local date = frame.args[1]
    if not date or #date < 8 then
        return '[[Category:UnknownDate]]'
    end

    local year = string.sub(date, 1, 4)
    local month = string.sub(date, 5, 6)
    local day = string.sub(date, 7, 8)

    return string.format('[[Category:%s-%s-%s]]', year, month, day)
end

return p