Module:Sandbox/Gonnym/episodewikidata
Appearance
-- This module requires the use of Module:Arguments.
local getArgs = require('Module:Arguments').getArgs
local p = {}
local validDisambiguationTypeList = {
"series",
"season",
"TV series, season",
"TV series, series"
}
local exceptionList = {
}
local otherInfoboxList = {
}
local function _main(args)
local title = args[1]
local validateDisambiguation = require('Module:Sandbox/Gonnym/Infobox disambiguation check')
return validateDisambiguation.main(title, validDisambiguationTypeList, exceptionList, otherInfoboxList)
end
function p.main(frame)
local args = getArgs(frame)
local category, debugString = _main(args)
return category
end
function p.test(frame)
local args = getArgs(frame)
local category, debugString = _main(args)
return debugString
end
return p