548
edits
(Applying protection level tracking logic to modules too) |
m (13 revisions imported from wikipedia:Module:Lua_banner: see Topic:Vtixlm0q28eo6jtf) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 34: | Line 34: | ||
for i, module in ipairs(modules) do | for i, module in ipairs(modules) do | ||
moduleLinks[i] = string.format('[[:%s]]', module) | moduleLinks[i] = string.format('[[:%s]]', module) | ||
local maybeSandbox = mw.title.new(module .. '/sandbox') | |||
if maybeSandbox.exists then | |||
moduleLinks[i] = moduleLinks[i] .. string.format(' ([[:%s|sandbox]])', maybeSandbox.fullText) | |||
end | |||
end | end | ||
local moduleList = mList.makeList('bulleted', moduleLinks) | local moduleList = mList.makeList('bulleted', moduleLinks) | ||