Module:Luacard2: Difference between revisions

From Archon Arcana - The KeyForge Wiki
Module:Luacard2
(Module:Luacard2)
(Module:Luacard2)
Line 98: Line 98:


function wikitext(s)
function wikitext(s)
return s:gsub('\n', ''):gsub('<p>','__PARA__')
if s==nil then
return ''
else
return s:gsub('\n', ''):gsub('<p>','__PARA__')
end
end
end