WikiBuilder
329
个编辑
小无编辑摘要 |
小无编辑摘要 |
||
第45行: | 第45行: | ||
local span = mw.html.create("span"); | local span = mw.html.create("span"); | ||
local a = list[args[1]]; | local a = list[args[1]]; | ||
if type(a) == 'nil' then | local b = args[2]; | ||
span:css('color',(args[1] or 'unset')):wikitext( | if type(a) == 'nil' or type(b) == 'string' then | ||
span:css('color',(args[1] or 'unset')):wikitext(b); | |||
elseif type(a) == 'string' then | elseif type(a) == 'string' then | ||
span:addClass(a):wikitext(args[1]); | span:addClass(a):wikitext(args[1]); |