Module:bnt-com-sortkey

From Wiktionary, the free dictionary
Jump to navigation Jump to search
This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

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