Content deleted Content added
No edit summary |
No edit summary |
||
Line 95:
--convert output date to input format -> outdate
local outform=frame.args.format or inform or "whoops"
day,month,year=tonumber(day),tonumber(month),tonumber(year)
outdate = ""
if outform=="iso" then
Line 107 ⟶ 108:
end
if outform=="mdy" then
outdate = monthnames[month]..day..", "..year..era
end
|