Module:DartsRankings/data/PDCAsia Players
Appearance
local data = {}
-- list of currently ranked PDC playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match PDC Asia listing (case insensitive)
-- 2nd entry is the 3 letter country code for the player
-- 3rd entry should be the first name (for sorting purposes) of the wikipedia page
-- 4th entry should be the last name (for sorting purposes) of the wikipedia page
-- 5th entry iundicates if the page exists (to reduce redlinks)
--[[6th entry is optional, and is the disambiguator for page (for Template:Sortname) ]]--
data.library = {
{ "Yoshihisa Baba" , "JPN" , "Yoshihisa" , "Baba" , 0 },
{ "Harith Lim" , "SGP" , "Harith" , "Lim" , 1 },
{ "Jun Matsuda" , "JPN" , "Jun" , "Matsuda" , 0 },
}
return data