Module:List

From Vintage Story Wiki
Revision as of 21:36, 17 August 2022 by Sana (talk | contribs)

Documentation for this module may be created at Module:List/doc

local p = {}
function p.list( f )
	local args = f.args
	local listItems = args[1]:match(';')
		if v:match(';') then
			listItems[k] = '<li>' .. v .. '</li>'
	end
	local list = table.concat(listItems, '\n')
	local html = {
		'<ol style="list-style-type: none; margin: 0; padding: 0;">',
			list,
		'</ol>'
	}
	return table.concat(html, '\n')
end
return p