Module:RecursiveSelectiveList

Revision as of 08:14, 22 December 2024 by EnWikiAdmin (talk | contribs)

Documentation for this module may be created at Module:RecursiveSelectiveList/doc

local p = {}
local mw = require('mw')

function p.main(frame)
    local categoryName = "Category:" .. frame.args.categoryName
    local content = mw.title.new(categoryName):getContent()
    return content or "The category '" .. categoryName .. "' does not exist or has no content."
end

return p