پودمان:debug/track

از ویکی‌واژه

توضیحات این پودمان می‌تواند در پودمان:debug/track/توضیحات قرار گیرد.

return function (key)
	local frame = mw.getCurrentFrame()
	if key then
		if type(key) ~= "table" then
			key = { key }
		end
		
		for i, value in pairs(key) do
			pcall(frame.expandTemplate, frame, { title = 'tracking/' .. value })
		end
	else
		error('No tracking key supplied to the function "' .. track .. '".')
	end
end