Module:bnt-com-sortkey
Jump to navigation
Jump to search
- The following documentation is located at Module:bnt-com-sortkey/documentation. [edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local export = {}
local u = require("Module:string/char")
local a = u(0xF000)
local oneChar = {
["ɓ"] = "b" .. a, ["ɗ"] = "d" .. a
}
local twoChars = {
["v̄"] = "v" .. a
}
function export.makeSortKey(text, lang, sc)
text = mw.ustring.lower(text)
for from, to in pairs(twoChars) do
text = mw.ustring.gsub(text, from, to)
end
return mw.ustring.upper(mw.ustring.gsub(text, ".", oneChar))
end
return export