Content deleted Content added
fix |
lower |
||
Line 68:
for code, lect in pairs(lects) do
if not lect.aliasOf then
if lect.isVariant or code:sub(1, 2) == 'X-' then
code = code:lower()
end
local name, link = getNameAndLink(
parent and parentCode .. '-' .. code or code
Line 141 ⟶ 144:
local function organizeKeys(t, lects, parent, parentCode)
for code, lect in pairs(lects) do
local origCode = (lect.isVariant or code:sub(1, 2) == 'X-')
and code:lower()
or code
if lect.aliasOf then
code = lect.aliasOf
|