Module:alphabetise letters

From Wiktionary, the free dictionary
Jump to navigation Jump to search

local export = {}
function export.sort (arg)
--[[local letters = {}
for st in mw.ustring.gmatch(arg, ".") do
    table.insert(letters, st)
end
return letters--]]
return arg
end
return export