local getArgs = require('Module:Arguments').getArgslocal p = local categories =
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 str = for _, topic in ipairs(args) do if topic
Invalid draft topic: ' .. topic .. '
' end end return strend
return p