Content deleted Content added
m Bracket fix |
Line breaking |
||
Line 23:
-- Write column headers
local team_width = Args['teamwidth'] or '190'
table.insert(t,'{|class="wikitable" style="text-align:center;"\n') -- Open table
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Position</nowiki>">Pos</abbr>\n')
table.insert(t,'! scope="col" width='..team_width..'|Team\n')
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Played</nowiki>">Pld</abbr>\n') -- Games played col
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Won</nowiki>">W</abbr>\n') -- Win col
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Drawn</nowiki>">D</abbr>\n')
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Lost</nowiki>">L</abbr>\n') -- Loss col
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Goals for</nowiki>">GF</abbr>\n')
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Goals against</nowiki>">GA</abbr>\n')
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Goal difference</nowiki>">GD</abbr>\n') -- Goal difference col
table.insert(t,'! scope="col" width=28|<abbr title="<nowiki>Points</nowiki>">Pts</abbr>\n') -- Points col
|