RuneScape Wiki
Advertisement

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

local p = {}

function p.main(frame)
	local args = frame:getParent().args
	-- hacky way of letting a literal pipe character replace syntax pipes
	local rargs = {}
	for _, v in ipairs(args) do
		table.insert(rargs,v)
	end
	rargs = table.concat(rargs,' | ')

	local ret = mw.html.create('div')
			:css({ ['font-size'] = 'larger',
				['font-weight'] = 'bold' })
			:wikitext(rargs)
	return ret
end

return p
Advertisement