diff --git a/.htmlcheckerfilter b/.htmlcheckerfilter
index 1298c14..3a1ac11 100644
--- a/.htmlcheckerfilter
+++ b/.htmlcheckerfilter
@@ -1,4 +1,3 @@
.*Text run is not in Unicode Normalization Form C.*
.*Document uses the Unicode Private Use Area.*
.*File was not checked. Files must have .html, .xhtml, .htm, or .xht extensions.*
-.*Possible misuse of “aria-label”. \(If you disagree with this warning, file an issue report or send e-mail to www-validator@w3.org.\).*
diff --git a/visualize.py b/visualize.py
index f4ca149..c74f348 100644
--- a/visualize.py
+++ b/visualize.py
@@ -203,9 +203,9 @@ def format_index(name, row_length, lang, bmp, duplicates, byte_rule):
else:
astral_seen.add(code_point)
contiguous = previous and previous + 1 == code_point
- out_file.write(("
- %d
- %s
- U+%04X
" % ("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)))
+ out_file.write((" | - %d
- %s
- U+%04X
" % ("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)))
else:
- out_file.write((" | - %d
- \uFFFD
- \u00A0
" % pointer))
+ out_file.write((" | - %d
- \uFFFD
- \u00A0
" % pointer))
previous = code_point
pointer += 1
if pointer % row_length == 0:
@@ -241,9 +241,9 @@ def format_coverage(name, lang, bmp, duplicates):
elif pointer is not None:
duplicate = code_point in duplicates
contiguous = previous and previous + 1 == pointer
- out_file.write((" | - U+%04X
- %s
- %d
" % ("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)))
+ out_file.write((" | - U+%04X
- %s
- %d
" % ("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)))
else:
- out_file.write((" | - U+%04X
- \uFFFD
- \u00A0
" % code_point))
+ out_file.write((" | - U+%04X
- \uFFFD
- \u00A0
" % code_point))
previous = pointer
out_file.write("")
out_file.close()
|