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.
1 parent 946fe34 commit 1e6bf8fCopy full SHA for 1e6bf8f
1 file changed
braillove-case-collector/converter.py
@@ -11,7 +11,10 @@ def main():
11
output_num += str(pattern.index(inp[i]))
12
output_braille += braille[pattern.index(inp[i])]
13
else:
14
- if inp[i] == "@":
+ if inp[i] == "{":
15
+ output_num += "42"
16
+ output_braille += braille[42]
17
+ elif inp[i] == "@":
18
output_num += "8"
19
output_braille += braille[8]
20
elif inp[i] == "|":
0 commit comments