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:Goalscorers/data/2026 ASEAN Championship

From Wikipedia, the free encyclopedia
local data = {}

-- flag template
data.templates = { flag_icon_linked = "fbicon" }

-- date and matches played of latest update
data.updated = { -- round,         matches,   update date,     OF TODAY: matches finished so far/total matches
                    finals  =   {  8,        "2026-07-27", "2/2" },
               }

data.groups = { -- DO NOT CHANGE THIS SECTION
                }

-- controls which teams are still active in tournament, and therefore have their players bolded
-- ONLY ENABLE THIS AFTER AT LEAST ONE OF THE GROUPS HAS CONCLUDED
-- data.active_countries = { "VIE", "SGP", "IDN", "CAM", "TLS", "THA", "MAS", "PHI", "MYA", "LAO" }

-- rounds of competition
data.rounds = { finals = 3 } -- DO NOT CHANGE

-- all competition goalscorers
data.goalscorers = {
    -- player wikilink, country, goals
	-- order doesn't matter, that is handled by the module
	-- use   to combine given names for sorting purposes
	-- (only the text after the first regular space is used for sorting)

    -- Cambodia (CAM)
    {"[[Ouk Sovann]]",				   "CAM", 1 },
	
	-- Indonesia (IDN)
    {"[[Mitchell Baker (footballer)|Mitchell Baker]]", "IDN",  3 },
	{"[[Jens Raven]]",                 "IDN", 1 },
	{"[[Sandy Walsh]]",                "IDN", 1 },

	-- Laos (LAO)
    -- {"[[PLAYER]]",				"LAO",	0 },

	-- Malaysia (MAS)
	{"[[Endrick (footballer, born 1995)|Endrick]]",	 "MAS",	1 },
    {"[[Paulo Josué]]",	       "MAS", 3 },
    {"[[Wan Kuzain]]",		       "MAS", 1 },
	
	-- Myanmar (MYA)
    {"[[Kyaw Min Oo]]",      "MYA", 1 },
    {"[[Myat Kaung Khant]]", "MYA", 1 },
	{"[[Than Paing]]",            "MYA", 2 },
	{"[[Win Naing Tun]]",    "MYA", 1 },
	
	-- Philippines (PHI)
    {"[[Jarvey Gayoso]]",		       "PHI", 1 },

	-- Singapore (SGP))
    {"[[Ilhan Fandi]]",		   "SGP", 2 },
	{"[[Shawal Anuar]]",		   "SGP", 1 },
	{"[[Song Ui-young]]",	       "SGP", 1 },

	-- Thailand (THA)
    {"[[Kakana Khamyok]]",        "THA", 2 },
    {"[[Sarach Yooyen]]",         "THA", 1 },
	{"[[Teerasak Poeiphimai]]",   "THA", 1 },
	{"[[Yotsakorn Burapha]]",     "THA", 1 },
	
	-- Vietnam (VIE)
    {"[[Nguyễn Đình Bắc]]",  "VIE", 3 },
	{"[[Hêndrio]]",			           "VIE", 2 },
	{"[[Nguyễn Quang Hải (footballer, born 1997)|Nguyễn Quang Hải]]", "VIE", 1 },
	{"[[Rafaelson]]",                  "VIE", 1 },

	-- Timor-Leste (TLS)
    -- {"[[PLAYER]]",				"TLS",	0 },
}

-- all competition own goal scorers
data.owngoalscorers = {
	-- player wikilink, country, { own goals, "own goal opponents" }
    {"[[Nadeo Argawinata]]", "IDN", { 1, "Cambodia" } },
	{"[[Viengxay Sydavong]]", "LAO", { 1, "Malaysia" } },
}

return data