Module:TOC: Difference between revisions

From ProleWiki, the proletarian encyclopedia
m (further improvement)
m (Added return function)
Line 17: Line 17:
end
end
end
end
return tostring(root)
end
end
return p
return p

Revision as of 13:54, 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')
		:wikitext(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