Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for chess pieces and playing card suits #93

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions unidecode/x026.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,26 +83,26 @@
'', # 0x51
'', # 0x52
'', # 0x53
'', # 0x54
'', # 0x55
'', # 0x56
'', # 0x57
'', # 0x58
'', # 0x59
'', # 0x5a
'', # 0x5b
'', # 0x5c
'', # 0x5d
'', # 0x5e
'', # 0x5f
'', # 0x60
'', # 0x61
'', # 0x62
'', # 0x63
'', # 0x64
'', # 0x65
'', # 0x66
'', # 0x67
'white king', # 0x54
'white queen', # 0x55
'white rook', # 0x56
'white bishop', # 0x57
'white knight', # 0x58
'white pawn', # 0x59
'black king', # 0x5a
'black queen', # 0x5b
'black rook', # 0x5c
'black bishop', # 0x5d
'black knight', # 0x5e
'black pawn', # 0x5f
'black spades', # 0x60
'white hearts', # 0x61
'white diamonds', # 0x62
'black clubs', # 0x63
'white spades', # 0x64
'black hearts', # 0x65
'black diamonds', # 0x66
'white clubs', # 0x67
'', # 0x68
'', # 0x69
'', # 0x6a
Expand Down
Loading