local module = {} function module.main(frame) local output = "" for k, _ in pairs(frame:getParent()) do output = output .. k .. '\n\n' end output = frame:getParent():getTitle() return output end return module