Module:Transliterator: Difference between revisions

Jump to navigation Jump to search
No edit summary
(Testing.)
Line 1: Line 1:
local p = {}
local p = {}
function p.main( frame )
function p.main( frame )
local word = frame.args[1]
local word = tostring( frame.args[1] )
local images = {
local images = {
["a"] = "[[File:Aurebesh-AE.svg|18px]]",
["a"] = "[[File:Aurebesh-AE.svg|18px]]",
Line 25: Line 25:
}
}
return string.gsub( word, images )
return word
end
end
return p
return p