Module:Tool:修订间差异

来自Arcaea中文维基
(创建页面,内容为“local p={} function p.time(frame) return os.date("(%Y/%m/%d)", frame.args.time) end return p”)
 
无编辑摘要
第2行: 第2行:


function p.time(frame)
function p.time(frame)
return os.date("(%Y/%m/%d)", frame.args.time)
return os.date("%Y/%m/%d", frame.args.time)
end
end


return p
return p

2021年2月15日 (一) 18:03的版本

可在Module:Tool/doc创建此模块的帮助文档

local p={}

function p.time(frame)
	return os.date("%Y/%m/%d", frame.args.time)
end

return p