Module:RecursiveSelectiveList

Revision as of 07:09, 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)
    -- Debugging: Display the raw input from the template
    local args = frame:getParent().args
    local pageName = args.pageName or "Main Page"
    
    -- Display what was captured
    return "Debug: pageName = " .. pageName
end

return p