Module:AgeTemplate

From ProleWiki, the proletarian encyclopedia
Revision as of 14:53, 3 September 2022 by Forte (talk | contribs) (Not sure what's wrong, trying different arguments)
local p = {}

function p.age( frame )
	local pframe = frame:getParent()
	
	local arg1 = pframe.args[1]
	local arg2 = pframe.args[2]
	local arg3 = pframe.args[3]
	
	if arg1 == "1" or arg1 == "2" or arg1 == "3" then
		local initialDate = arg2
		else
			local initialDate = arg1
	end
	return "initialDate: " .. initialDate
end
	-- local year,month,day = string.match(initialDate, '(%d+)-(%d+)-(%d+)')
	-- return "Year: " .. year .. ", Month: " .. month .. ", Day: " .. day
-- end
return p