21 lines
474 B
Python
21 lines
474 B
Python
from random import choice
|
|
|
|
from .const_stateful import MARSEY_MAPPINGS
|
|
|
|
|
|
def marsify(text, chud_phrase):
|
|
if '`' in text or '<pre>' in text or '<code>' in text:
|
|
return text
|
|
|
|
chud_words = chud_phrase.split() if chud_phrase else []
|
|
|
|
new_text = ''
|
|
for x in text.split(' '):
|
|
new_text += f'{x} '
|
|
x = x.lower()
|
|
if x in chud_words: continue
|
|
if len(x) >= 5 and x in MARSEY_MAPPINGS:
|
|
marsey = choice(MARSEY_MAPPINGS[x])
|
|
new_text += f':{marsey}: '
|
|
return new_text
|