Content deleted Content added
No edit summary |
No edit summary |
||
Line 264:
local row = body:tag("tr")
row:tag("th"):wikitext("U+".. rowHex .. "<i>x</i>")
:attr("rowspan", "2")
for colIndex=0, 15 do
local cell = row:tag("td")
Line 270 ⟶ 271:
args
)
end
local subrow = body:tag("tr")
for colIndex=0, 15 do
local cell = subrow:tag("td"):addClass("codepoint")
:wikitext(rowHex .. string.format("%X", colIndex))
end
end
|