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)
local ns = mw.title.getCurrentTitle().namespace
if ns ~= 118 and ns ~= 2 then
return '[[رده:موضوع مبا در فضای نام اشتباه]]'
end
local jsondata = mw.title.new('ویکیپدیا:ویکیپروژه مقالهها برای ایجاد/فهرست موضوعات مبا.json'):getContent()
local data = mw.text.jsonDecode(jsondata)
local topic = args[1]
local match = data[topic]
if match ~= nil then
return '[[رده:' .. match.category .. ']]'
else
return '[[رده:موضوع مبا: پارامتر نامعتبر]]'
end
end
return p