Документацію для цього модуля можна створити у Модуль:RandomMembers/документація
local p = {} function p.showRandomMembers(frame) local count = 4 -- Number of random members to display local category = 'Учасники_спільноти_MCC' -- The category to fetch from local members = mw.site:pagesInCategory(category, 'random', count) local output = {} for member in pairs(members) do table.insert(output, string.format('<p>[[%s]]</p>', member.fullText)) end return table.concat(output, "\n") end return p