Leaguepedia | League of Legends Esports Wiki
Advertisement

Edit the documentation or categories for this module.


local p = {}

function p.navbox(tl, args)
	return mw.getCurrentFrame():expandTemplate{
		title = tl .. ' Navbox',
		args = args or { '' }
	}
end

function p.error(text)
	return mw.getCurrentFrame():expandTemplate{ title = "Important", args = { text } }
end

return p
Advertisement