Skip to content

Commit

Permalink
Issue 529: Update default character replacement to better handle punc…
Browse files Browse the repository at this point in the history
…tuation
  • Loading branch information
sirstudly committed Jul 17, 2024
1 parent 113caeb commit 5fbb999
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions releases/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,24 @@ class rename:
['à', 'a'],
['ö', 'oe'],
['ô', 'o'],
['ō', 'o'],
['ß', 'ss'],
['é', 'e'],
['è', 'e'],
['î', 'i'],
['sh!t', 'shit'],
['f**k', 'fuck'],
['f**king', 'fucking'],
[':', ''],
['?', ''],
[':', '.?'],
['(', ''],
[')', ''],
['`', ''],
['´', ''],
[',', ''],
['!', ''],
['?', ''],
['!', '.?'],
[' - ', ' '],
["'", ''],
["'", '.?'],
["\u200b", ''],
['*', ''],
[' ', '.']
Expand Down

0 comments on commit 5fbb999

Please sign in to comment.