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