Модуль:InfoboxBuilders: различия между версиями
Перейти к навигации
Перейти к поиску
Hloth (обсуждение | вклад) Отмена версии 226, сделанной Hloth (обсуждение) Метка: отмена |
Hloth (обсуждение | вклад) Нет описания правки |
||
| Строка 9: | Строка 9: | ||
end | end | ||
return | return "hello world" | ||
end | end | ||
return p | return p | ||
Версия от 03:34, 14 марта 2025
local p = {}
function p.renderCategories(frame)
local builders = frame.args['builders'] or ''
local categories = {}
for builder in builders:gmatch('%S+') do
table.insert(categories, '[[Category:' .. builder .. ']]')
end
return "hello world"
end
return p