Module:cel-pro-sortkey

Revision as of 09:12, 27 April 2024 by wikt>SurjectionBot (Protected "Module:cel-pro-sortkey": (bot) automatically protect highly visible templates/modules (reference score: 1953+ >= 1000) ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:cel-pro-sortkey/doc

local export = {}
local u = mw.ustring.char
local a = u(0xF000)

local remove_diacritics = u(0x0304) -- macron

local oneChar = {
	["ɸ"] = "f", ["φ"] = "f", ["ʷ"] = "w"
}

function export.makeSortKey(text, lang, sc)
	text = mw.ustring.gsub(mw.ustring.lower(text), "w", "w" .. a) -- ensure "w" comes after "ʷ"
	
	return mw.ustring.upper(mw.ustring.toNFC(mw.ustring.gsub(mw.ustring.toNFD(mw.ustring.gsub(text, ".", oneChar)), "[" .. remove_diacritics .. "]", ""))) -- decompose, remove appropriate diacritics, then recompose again
end

return export