Модуль:Ecopedia: различия между версиями
Материал из Eco - Русская Wiki
[непроверенная версия] | [непроверенная версия] |
StalEF (обсуждение | вклад) Нет описания правки |
StalEF (обсуждение | вклад) Нет описания правки |
||
Строка 19: | Строка 19: | ||
local args = norm() | local args = norm() | ||
if args.text == nil or args. | if args.text == nil or args.text == '' then | ||
return '\'text\' must be specified.' | return '\'text\' must be specified.' | ||
end | end | ||
Строка 28: | Строка 28: | ||
return '\'text\' must be specified.' | return '\'text\' must be specified.' | ||
end | end | ||
Data = require( "Module:EcopediaData" ) | |||
Table = EcopediaData[Ecopedia] | |||
if Table == {} then return Data.. ' could not be found in Module:EcopediaData.' end | |||
return index | return index |
Версия от 12:50, 2 октября 2020
Для документации этого модуля может быть создана страница Модуль: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.text == '' then
return '\'text\' must be specified.'
end
local index = args.text
if index == '' then
return '\'text\' must be specified.'
end
Data = require( "Module:EcopediaData" )
Table = EcopediaData[Ecopedia]
if Table == {} then return Data.. ' could not be found in Module:EcopediaData.' end
return index
end
return p