@@ -203,9 +203,9 @@ def format_index(name, row_length, lang, bmp, duplicates, byte_rule):
203
203
else :
204
204
astral_seen .add (code_point )
205
205
contiguous = previous and previous + 1 == code_point
206
- out_file .write (("<td class='%s %s%s%s' aria-label ='%s'><dl><dt>%d<dd lang=%s>%s<dd>U+%04X</dl>" % ("contiguous" if contiguous else "discontiguous" , classify (code_point ), " duplicate" if duplicate else "" , check_compatibility (code_point ), aria (code_point , contiguous , duplicate ), pointer , lang , format_code_point (code_point ), code_point )))
206
+ out_file .write (("<td class='%s %s%s%s' aria-description ='%s'><dl><dt>%d<dd lang=%s>%s<dd>U+%04X</dl>" % ("contiguous" if contiguous else "discontiguous" , classify (code_point ), " duplicate" if duplicate else "" , check_compatibility (code_point ), aria (code_point , contiguous , duplicate ), pointer , lang , format_code_point (code_point ), code_point )))
207
207
else :
208
- out_file .write (("<td class=unmapped aria-label =Unmapped><dl><dt>%d<dd>\uFFFD <dd>\u00A0 </dl>" % pointer ))
208
+ out_file .write (("<td class=unmapped aria-description =Unmapped><dl><dt>%d<dd>\uFFFD <dd>\u00A0 </dl>" % pointer ))
209
209
previous = code_point
210
210
pointer += 1
211
211
if pointer % row_length == 0 :
@@ -241,9 +241,9 @@ def format_coverage(name, lang, bmp, duplicates):
241
241
elif pointer is not None :
242
242
duplicate = code_point in duplicates
243
243
contiguous = previous and previous + 1 == pointer
244
- out_file .write (("<td class='%s %s%s%s' aria-label ='%s'><dl><dt>U+%04X<dd lang=%s>%s<dd>%d</dl>" % ("contiguous" if contiguous else "discontiguous" , classify (code_point ), " duplicate" if duplicate else "" , check_compatibility (code_point ), aria (code_point , contiguous , duplicate ), code_point , lang , format_code_point (code_point ), pointer )))
244
+ out_file .write (("<td class='%s %s%s%s' aria-description ='%s'><dl><dt>U+%04X<dd lang=%s>%s<dd>%d</dl>" % ("contiguous" if contiguous else "discontiguous" , classify (code_point ), " duplicate" if duplicate else "" , check_compatibility (code_point ), aria (code_point , contiguous , duplicate ), code_point , lang , format_code_point (code_point ), pointer )))
245
245
else :
246
- out_file .write (("<td class=unmapped aria-label =Unmapped><dl><dt>U+%04X<dd>\uFFFD <dd>\u00A0 </dl>" % code_point ))
246
+ out_file .write (("<td class=unmapped aria-description =Unmapped><dl><dt>U+%04X<dd>\uFFFD <dd>\u00A0 </dl>" % code_point ))
247
247
previous = pointer
248
248
out_file .write ("</table>" )
249
249
out_file .close ()
0 commit comments