Content deleted Content added
No edit summary |
No edit summary |
||
Line 31:
if conference then
conference = conference:sub(1,1):upper() .. conference:sub(2,-1) -- ucfirst
return '[[' .. conference .. 'ern Conference (NBA)|' .. conference .. 'ern
else
return nil
Line 65:
local division = args['division']:lower()
-- division leader record
local dloffset = 8*(tonumber(args[division .. 'leader']) or 1
local dlhw = tonumber(args[
local dlhl = tonumber(args[
local dlrw = tonumber(args[
local dlrl = tonumber(args[
-- start the table
local root = mw.html.create('table')
Line 139:
-- conference leader
local cloffset = 0
local clhw = tonumber(args[
local clhl = tonumber(args[
local clrw = tonumber(args[
local clrl = tonumber(args[
-- start the table
local root = mw.html.create('table')
|