Модуль:Ecopedia
Материал из Eco - Русская Wiki
Для документации этого модуля может быть создана страница Модуль:Ecopedia/doc
local p = {}
function norm()
local origArgs = mw.getCurrentFrame():getParent().args
local args = {}
for k, v in pairs( origArgs ) do
v = mw.text.trim( tostring( v ) )
if v ~= '' then
args[k] = v
end
end
return args
end
function p.main()
local args = norm()
if args.text == nil or args.skill == '' then
return '\'text\' must be specified.'
end
local index = args.text
if index == '' then
return '\'text\' must be specified.'
end
return index
end
return p