Jump to content

Module:Sports table/sub

From Simple English Wikipedia, the free encyclopedia
Revision as of 14:49, 30 October 2014 by CRwikiCA (talk | changes) (Proper functionality for width)

Usage

{{#invoke:Sports table/sub|function_name}}


-- Subfunctions for this module that are called from the style modules
local ppp = {}

function ppp.colhead(ttt,width,text)
	-- For individual column headers
	if width=='auto' then
		local head_string = '! scope="col" |'..text..'\n'
	else
		local head_string = '! scope="col" width='..width..'|'..text..'\n'
	end

	ttt.count = ttt.count+1
	table.insert(ttt.tab_text,head_string)
	
	return ttt
end

return ppp