Module:Sandbox/Boboquack/Dates

This is an old revision of this page, as edited by Boboquack (talk | contribs) at 06:32, 7 November 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- For Google Code In 2018 - Lua Task 7 - Date formatting

local p={}

p.convert=function(frame)
	local form=frame.args.format or 'none'
	return frame.args.date .. " Format: " .. form --just to test results table
end

return p