Added thin space and thin non-breaking space to unicode class

This commit is contained in:
Veronica K. B. Olsen
2020-06-18 23:45:23 +02:00
parent 69170aad3e
commit 3bfe214682
+4
View File
@@ -231,6 +231,8 @@ class nwUnicode:
## Other
U_NBSP = "\u00a0" # Non-breaking space
U_THNSP = "\u2009" # Thin space
U_THNBSP = "\u202f" # Thin non-breaking space
U_CHECK = "\u2714" # Heavy check mark
U_MULT = "\u2715" # Multiplication x
@@ -275,6 +277,8 @@ class nwUnicode:
## Other
H_NBSP = " "
H_THNSP = " "
H_THNBSP = " "
H_CHECK = "✔"
H_MULT = "✕"