Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

Jump to content

Module:PakistanSuperLeagueTeams

From Wikipedia, the free encyclopedia
--[[
    Each team must have a table with the following keys:
    code: A short code of 2-4 letters (uppercase) to represent the team.
    fullName: The full name of the team.
    shortName: The short name of the team, usually the location in which it is based.
    pageName: The title of the team's article on Wikipedia. This is usually the team's full name, but if disambiguation is
              needed, it may be different.
    startYear: The year in which the team first played.
    endYear: The year in which the team last played. (For inactive/disbanded/terminated teams only)
    
    This module is to be used with mw.loadData(). It should NOT contain functions!
]]

return {
    
    {
        code       = "IU",
        fullName   = "Islamabad United",
        shortName  = "Islamabad",
        pageName   = "Islamabad United",
        startYear  = 2015,
    },
    
    {
        code       = "KK",
        fullName   = "Karachi Kings",
        shortName  = "Karachi",
        pageName   = "Karachi Kings",
        startYear  = 2015,
    },
    
    {
        code       = "PZ",
        fullName   = "Peshawar Zalmi",
        shortName  = "Peshawar",
        pageName   = "Peshawar Zalmi",
        startYear  = 2015,
    },
    
    {
        code       = "QG",
        fullName   = "Quetta Gladiators",
        shortName  = "Quetta",
        pageName   = "Quetta Gladiators",
        startYear  = 2015,
    },
    
    {
        code       = "LQ",
        fullName   = "Lahore Qalandars",
        shortName  = "Lahore",
        pageName   = "Lahore Qalandars",
        startYear  = 2015,
    },
     {
        code       = "MS",
        fullName   = "Multan Sultans",
        shortName  = "Multan",
        pageName   = "Multan Sultans",
        startYear  = 2018,
    },
     {
        code       = "RP",
        fullName   = "Rawalpindiz",
        shortName  = "Pindiz",
        pageName   = "Rawalpindiz",
        startYear  = 2026,
    },
     {
        code       = "HK",
        fullName   = "Hyderabad Kingsmen",
        shortName  = "Hyderabad",
        pageName   = "Hyderabad Kingsmen",
        startYear  = 2026,
    },
    
}