Content deleted Content added
No edit summary |
No edit summary |
||
Line 125:
---------------------
local function getCellAbbr(codepoint, category, args)
local function getHardcodedExceptionAbbr(codepoint)
for key, value in pairs(linebreakAbbr) do
if codepoint.int >= value.first
Line 135:
end
local function getAliasAbbr(codepoint)
local tbl = getAliasValues(codepoint.int, "abbreviation")
local alias = tbl[#tbl] or nil -- last one
Line 147:
end
local function abbrFromString(codepoint, args)
local abbr = ""
local name = mUnicode.lookup_name(codepoint.int)
|