Module:PageDates

Revision as of 23:00, 4 June 2025 by Ryan (talk | contribs)

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

local p = {}

function p.dates(frame)
    local lang = mw.language.getContentLanguage()
    local updatedTimestamp = frame:preprocess("{{REVISIONTIMESTAMP}}")
    local updatedDate = lang:formatDate("j F Y", updatedTimestamp)

    return string.format("on %s", updatedDate)
end

return p