Module:SpriteFile: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 107: Line 107:
if string.find(link, "parallel:") then  -- <---- this sub-if/else statement is new
if string.find(link, "parallel:") then  -- <---- this sub-if/else statement is new
-- have to do this weird inner tostring here bc something about converting the spriteText table causes the text indentation to be correct
-- have to do this weird inner tostring here bc something about converting the spriteText table causes the text indentation to be correct
linkName = mw.ustring.gsub( tostring(spriteText), "[Pp]arallel:", "" )
-- linkName = (linkName:gsub("^%l", string.upper))
-- linkName = (linkName:gsub("^%l", string.upper))
spriteText = '[[' .. linkName .. '|' .. linkName .. ']]'  
spriteText = '[[' .. mw.ustring.gsub( tostring(spriteText), "[Pp]arallel:", "" ) .. '|' .. mw.ustring.gsub( tostring(spriteText), "[Pp]arallel:", "" ) .. ']]'  
else
else
spriteText = '[[' .. link .. ' (Vanilla)' .. '|' .. tostring( spriteText ) .. ']]'
spriteText = '[[' .. link .. ' (Vanilla)' .. '|' .. tostring( spriteText ) .. ']]'

Navigation menu