Module:AUAssembly: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
function p.table( frame ) | function p.table( frame ) | ||
text = "{|" | text = "{| class='wikitable' style='text-align:left;'\n|+ List of MPs in the AU Assembly" | ||
table.sort(players) | table.sort(players) | ||
for i, v in ipairs(players) do | for i, v in ipairs(players) do |
Revision as of 18:28, 7 October 2023
Documentation for this module may be created at Module:AUAssembly/doc
local p = {} --p stands for package
local players = {"iUpgrade","Dools2"}
local text = ""
function p.table( frame )
text = "{| class='wikitable' style='text-align:left;'\n|+ List of MPs in the AU Assembly"
table.sort(players)
for i, v in ipairs(players) do
text = text.."\n| "..v
end
text = text.."\n|}"
return text
end
return p