Replace the arrow unicodes with some more universal ones

This commit is contained in:
Veronica K. B. Olsen
2020-05-04 17:58:17 +02:00
parent d706b54785
commit e2b9e01c44
+16 -8
View File
@@ -237,10 +237,14 @@ class nwUnicode:
U_MULT = "\u2715" # Multiplication x
## Arrows
U_UTRI = "\u2bc5" # Up-pointing triangle
U_DTRI = "\u2bc6" # Down-pointing triangle
U_LTRI = "\u2bc7" # Left-pointing triangle
U_RTRI = "\u2bc8" # Right-pointing triangle
U_UTRI = "\u25b2" # Up-pointing triangle
U_UTRIS = "\u25b4" # Up-pointing triangle, small
U_RTRI = "\u25b6" # Right-pointing triangle
U_RTRIS = "\u25b8" # Right-pointing triangle, small
U_DTRI = "\u25bc" # Down-pointing triangle
U_DTRIS = "\u25be" # Down-pointing triangle, small
U_LTRI = "\u25c0" # Left-pointing triangle
U_LTRIS = "\u25c2" # Left-pointing triangle, small
# HTML Equivalents
@@ -276,9 +280,13 @@ class nwUnicode:
H_MULT = "✕"
## Arrows
H_UTRI = "⯅"
H_DTRI = "⯆"
H_LTRI = "⯇"
H_RTRI = "⯈"
H_UTRI = "▲"
H_UTRIS = "▴"
H_RTRI = "▶"
H_RTRIS = "▸"
H_DTRI = "▼"
H_DTRIS = "▾"
H_LTRI = "◀"
H_LTRIS = "◂"
# END Class nwUnicode