We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0bfc5b + da57062 commit 70e51e4Copy full SHA for 70e51e4
1 file changed
braillove-case-collector/converter.py
@@ -1,4 +1,4 @@
1
-pattern = " a1b'k2l`cif/msp\"e3h9o6r^djg>ntq,*5<-u8v.%[$+x!&;:4\\0z7(_?w]#y)="
+pattern = " a1b'k2l@cif/msp\"e3h9o6r^djg>ntq,*5<-u8v.%[$+x!&;:4\\0z7(_?w]#y)="
2
braille = "⠀⠁⠂⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌⠍⠎⠏⠐⠑⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜⠝⠞⠟⠠⠡⠢⠣⠤⠥⠦⠧⠨⠩⠪⠫⠬⠭⠮⠯⠰⠱⠲⠳⠴⠵⠶⠷⠸⠹⠺⠻⠼⠽⠾⠿"
3
4
@@ -20,9 +20,9 @@ def main():
20
elif inp[i] == "~":
21
output_num += "24"
22
output_braille += braille[24]
23
- elif inp[i] == "@":
24
- output_num += "8"
25
- output_braille += braille[8]
+ elif inp[i] == "`":
+ output_num += "0"
+ output_braille += braille[0]
26
elif inp[i] == "|":
27
output_num += "51"
28
output_braille += braille[51]
0 commit comments