Module:Profession info: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
m (BlackHawk moved page Module:Sandbox/User:BlackHawk/Skill info to Module:Sandbox/User:BlackHawk/Profession info without leaving a redirect) |
No edit summary |
||
Line 3: | Line 3: | ||
function p._main(frame) |
function p._main(frame) |
||
local args = frame:getParent().args |
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 |
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