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 |
||