Module:lmy-sortkey

Revision as of 12:00, 21 April 2026 by Sware (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

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

local oneChar = {
	["ɓ"] = "b" .. a, ["ɗ"] = "d" .. a, ["ĵ"] = "j" .. a
}

function export.makeSortKey(text, lang, sc)
	return mw.ustring.upper(mw.ustring.gsub(mw.ustring.lower(text), ".", oneChar))
end

return export