Content deleted Content added
No edit summary |
No edit summary |
||
Line 42:
row:tag("th"):wikitext('U+'.. rowHex .. 'x')
for colIndex=0, 15 do
local cell = row:tag("td")
▲ tostring(unicodeChar(rowHex .. string.format("%X", colIndex)))
if isReserved(hex) then
)▼
cell:addClass("reserved")
else
cell:wikitext('&#x'.. hex .. ';')
end
end
|