Content deleted Content added
No edit summary |
No edit summary |
||
Line 3:
local function createTableBody(startHex, endHex)
local
--header
local labelRow =
labelRow:tag("th")--empty corner cell
for colIndex=0, 15 do
Line 16:
local endInt = tonumber(endHex:sub(1, -2), 16)
for rowIndex=startInt, endInt do
local row =
local rowHex = string.format("%X", rowIndex)
row:tag("th"):wikitext('U+'.. rowHex .. 'x')
Line 23:
end
end
return tostring(
end
|