Module:Profession info

From Brighter Shores Wiki
Revision as of 21:33, 26 November 2024 by BlackHawk (talk | contribs)
Jump to navigation Jump to search
Module documentation
This documentation is transcluded from Module:Profession info/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Profession info/doc. [edit]
Module:Profession info's function main is invoked by Template:Profession info.

local p = {}

function p._main(frame)
	local args = frame:getParent().args
	
	local name = args.name
	local profession = args.profession
	local exp = args.exp
	local lvl = args.lvl
	
	local out = mw.html.create('table')
		:addClass('wikitable')
		:tag('tr')
			:tag('th')
				:attr{ colspan = '2' }
				:wikitext(name)
			:done()
		:done()
	
	return out
end

return p