Content deleted Content added
No edit summary |
No edit summary |
||
Line 6:
local function isReserved(hex)
return unicodeLookupName(tonumber(hex, 16)):find("<reserved")
:addClass("reserved")▼
end
Line 45 ⟶ 29:
local cell = row:tag("td")
if isReserved(hexStr) then
cell:
:cssText("background-color:#CCCCCC;")
else
cell:wikitext('&#x'.. hexStr .. ';')
|