モジュール:debug/track

出典: フリー多機能辞典『ウィクショナリー日本語版(Wiktionary)』
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:debug/track/doc に作成できます

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 [[モジュール:debug/track]].")
	end
	return true
end