(Новая страница: «local prototypes = mw.loadData("Module:Uplink Lookup/data")») |
Нет описания правки |
||
Строка 1: | Строка 1: | ||
local prototypes = mw.loadData("Module:Uplink Lookup/data") | local prototypes = mw.loadData("Module:Uplink Lookup/data") | ||
function p.buildboxes(frame) | |||
local out = "" | |||
local group = frame.args[1] | |||
for k in pairs(p.chem) do | |||
if p.chem[k].group == group then | |||
out = out .. frame:expandTemplate{ title = "Chembox", args = { prototype = k }} | |||
elseif group == nil then | |||
out = out .. frame:expandTemplate{ title = "Chembox", args = { prototype = k }} | |||
end | |||
end | |||
return out | |||
end |
Версия от 14:41, 18 января 2024
Для документации этого модуля может быть создана страница Модуль:Uplink Lookup/doc
local prototypes = mw.loadData("Module:Uplink Lookup/data") function p.buildboxes(frame) local out = "" local group = frame.args[1] for k in pairs(p.chem) do if p.chem[k].group == group then out = out .. frame:expandTemplate{ title = "Chembox", args = { prototype = k }} elseif group == nil then out = out .. frame:expandTemplate{ title = "Chembox", args = { prototype = k }} end end return out end