Модуль:InfoboxBuilders
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 table.concat(categories, ' ')
end
return p