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

Test here:

Mon Jan 26 17:08:24 2026


-- Package definition to return to Scribunto - this allows us to define methods that can be called
-- when this module is targeted.
local p = {}
function p.GenerateUI(frame)
   local date = os.date("%c", os.time())
   local time = mw.html.create('p')
   time:tag('div'):wikitext(date):done()
   return tostring(time)
end
return p