forked from rDrama/rDrama
1
0
Fork 0

Owoify: exclude 'the' ↦ 'teh' replacement.

master
Snakes 2022-11-07 02:22:55 -05:00
parent 8652f5aadd
commit 7462477719
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ OWO_EXCLUDE_PATTERNS = [
help_re.poll_regex, # polls
help_re.choice_regex,
help_re.command_regex, # markup commands
re.compile(r'\bthe\b', flags=re.I|re.A), # exclude: 'the' ↦ 'teh'
]
def owoify(source: str) -> str: