This module will sort text in the Tai Tham script. It is used to sort Lü, Khün, Northern Thai, and Yong.
The module should preferably not be called directly from templates or other modules.
To use it from a template, use {{sortkey}}
.
Within a module, use Module:languages#Language:makeSortKey.
For testcases, see Module:Lana-sortkey/testcases.
makeSortKey(text, lang, sc)
text
written in the script specified by the code sc
, and language specified by the code lang
.nil
.local export = {}
local u = mw.ustring.char
local minorMarkSet = "()"
local minorMarks = {
= "0", = "0", = "1", = "2", = "3",
= "4", = "5", = "6", = "7", = "8"
}
local monographs = {
"] = "", = "ᩃᩯ", = "ᩈ᩠ᩈ",
= "᩠ᩁ", = "᩠ᩃ", = "᩠ᩃ",
= "᩠ᨦ", = "᩠ᨦ", = "᩠ᨻ",
= "᩠ᨾ", = "᩠ᨷ", = "᩠ᩈ", = "ᩣ"
}
local digraphs = {
)ᩛ"] = "%1᩠ᨮ", )ᩛ"] = "%1᩠ᨳ", )ᩛ"] = "%1᩠ᨻ"
}
function export.makeSortKey(text, lang, sc)
local minorKey = ""
for mark in mw.ustring.gmatch(text, minorMarkSet) do
minorKey = minorKey .. minorMarks
end
text = mw.ustring.gsub(text, minorMarkSet, "")
for from, to in pairs(digraphs) do
text = mw.ustring.gsub(text, from, to)
end
for from, to in pairs(monographs) do
text = mw.ustring.gsub(text, from, to)
end
return text .. minorKey
end
return export