forked from rDrama/rDrama
1
0
Fork 0
Aevann 2023-10-27 01:25:41 +03:00
parent 6edcb48763
commit 409c9ad75b
2 changed files with 10 additions and 3 deletions

View File

@ -383,7 +383,7 @@ def sanitize(sanitized, golden=True, limit_pings=0, showmore=False, count_emojis
sanitized = marsify(sanitized, author.chud_phrase)
if obj and obj.sharpened:
sanitized = sharpen(sanitized)
sanitized = sharpen(sanitized, v)
if '```' not in sanitized and '<pre>' not in sanitized:
sanitized = linefeeds_regex.sub(r'\1\n\n\2', sanitized)
@ -683,7 +683,7 @@ def filter_emojis_only(title, golden=True, count_emojis=False, obj=None, author=
title = marsify(title, author.chud_phrase)
if obj and obj.sharpened:
title = sharpen(title)
title = sharpen(title, v)
emojis_used = set()

View File

@ -1,7 +1,14 @@
from files.helpers.regex import *
def sharpen(string):
def sharpen(string, v):
if v.chud_phrase:
string = string.replace(v.chud_phrase, 'erfdsx34224e4535resfed')
string = the_fucking_regex.sub("\g<1> fucking", string)
string = bitch_question_mark_regex.sub(", bitch?", string)
string = exclamation_point_regex.sub(", motherfucker!", string)
if v.chud_phrase:
string = string.replace('erfdsx34224e4535resfed', v.chud_phrase)
return string