Module:TOC: Difference between revisions

From ProleWiki, the proletarian encyclopedia
m (Replaced uncalled "title" for "args.title" to parse directly from input)
m (Bolding the title through CSS (hope it's better than having to wikitext it))
Line 9: Line 9:
:addClass('toctitle')
:addClass('toctitle')
:tag('big')
:tag('big')
:css('font-weight', 'bold')
:wikitext(args.title)
:wikitext(args.title)
end
end

Revision as of 14:01, 22 June 2022

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('^heading(%d+)$') or k:match('^content(%d+)$')
		if num then table.insert(rowNums, tonumber(num))
		end
	end
	return tostring(root)
end
return p