跳至內容

模組:Chinese date

被永久保護的模塊
維基百科,自由的百科全書

require('strict')

local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	return require('Module:Date_Convert').ChineseDate(args)
end

return p