Module:TOC

From ProleWiki, the proletarian encyclopedia
Revision as of 17:22, 22 June 2022 by Forte (talk | contribs) (Second attempt to implement section)
local p = {}
function p.toc( frame )
	local args = frame:getParent().args
	local root = mw.html.create()
	root = root:tag('div')
	root:addClass('template-toc')
	if args.title then
		root:tag('div')
		:addClass('toctitle')
		:tag('big')
		:css('font-weight', 'bold')
		:wikitext(args.title)
	end
	local rowNums = {}
	for k,v in pairs(args) do
		local num = k:match('^header(%d+)$') or k:match('^section(%d+)$') or k:match('^link(%d+)$')
		if num then table.insert(rowNums, tonumber(num))
		end
	end
	for i, num in ipairs(rowNums) do
		local header = args['header' .. num]
		if header then
			root:tag('div')
			:addClass('toctitle')
			:css('font-weight', 'bold')
			:wikitext(header)
		end
		local section = args['section' .. num]
		if section then
			if i == 1 then
			local ul = root:tag('ul')
			ul:tag('li')
			:addClass('toclevel-1')
			:wikitext(section)
			else
				ul:tag('li')
				:addClass('toclevel-1')
				:wikitext(section)
			end
		end
	end
	return tostring(root)
end
return p