মডিউল:খেলাঘর/R1F4T

এটি এই পাতার একটি পুরনো সংস্করণ, যা R1F4T (আলোচনা | অবদান) কর্তৃক ০৭:১২, ২৫ ডিসেম্বর ২০২৪ তারিখে সম্পাদিত হয়েছিল। উপস্থিত ঠিকানাটি (ইউআরএল) এই সংস্করণের একটি স্থায়ী লিঙ্ক, যা বর্তমান সংস্করণ থেকে ব্যাপকভাবে ভিন্ন হতে পারে।

local p = {}

function p.main(frame)
    local suffixes = {"খেলাঘর", "গোল"}
    local basePage = "Wikipedia:"  -- Base prefix for the pages
    
    local existingPages = {}
    
    for _, suffix in ipairs(suffixes) do
        local pageName = basePage .. suffix  -- Combine base and suffix
        local title = mw.title.new(pageName)  -- Create title object
        
        if title and title.exists then
            table.insert(existingPages, pageName)
        end
    end
    local result = "* " .. table.concat(existingPages, "\n* ")
    return result
end

return p