模組:If empty:修訂間差異

出自眾神廳
跳至導覽 跳至搜尋
國家模板>Xiplus
 
已匯入 1 筆修訂
 
(無差異)

2026年9月17日 (四) 09:22的最新修訂

可在模組:If empty/doc建立此模組的說明文件

local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})

	local lastk = 0
	for k,v in ipairs(args) do
		if v ~= '' then
			return v
		end
		lastk = k
	end

end

return p