Module:Profession info: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
Line 3:
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
 

Revision as of 21:33, 26 November 2024

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