forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-04-16 17:30:35 +02:00
parent 2d45a66739
commit 248d3c7d25
1 changed files with 5 additions and 1 deletions

View File

@ -96,7 +96,8 @@ def sanitize(sanitized, noimages=False, alert=False, comment=False, edit=False):
captured.append(i.group(0))
old = i.group(0)
new = old.lower()
if 'marseylong1' in old or 'marseylong2' in old or 'marseyllama1' in old or 'marseyllama2' in old: new = old.lower().replace(">", " class='mb-0'>")
else: new = old.lower()
captured2 = []
for i in emoji_regex2.finditer(new):
@ -239,6 +240,9 @@ def sanitize(sanitized, noimages=False, alert=False, comment=False, edit=False):
if name == 'src': return True
return False
if tag == 'p':
if name == 'class' and value == 'mb-0': return True
return False
sanitized = bleach.Cleaner(tags=allowed_tags,