Content deleted Content added
No edit summary |
No edit summary |
||
Line 28:
local hexStr = rowHex .. string.format("%X", colIndex)
local cell = row:tag("td")
:attr("title", unicodeLookupName(tonumber(hexStr, 16)))▼
if isReserved(hexStr) then
cell:addClass("reserved")
Line 33 ⟶ 34:
else
cell:wikitext('&#x'.. hexStr .. ';')
▲ :attr("title", unicodeLookupName(tonumber(hexStr, 16)))
end
end
|