forked from MarseyWorld/MarseyWorld
dsffsd
parent
4ed45c6cb7
commit
dcdea41a1f
|
@ -218,7 +218,7 @@ def sanitize(sanitized, noimages=False):
|
|||
if start in sanitized and end in sanitized and start in sanitized.split(end)[0] and end in sanitized.split(start)[1]: sanitized = sanitized.replace(start, '<span class="spoiler">').replace(end, '</span>')
|
||||
|
||||
print(sanitized)
|
||||
for i in re.finditer(r"^(\s+)?((:[\w]+:)+(\s+)?)+", sanitized):
|
||||
for i in re.finditer("^(\s+)?((:[\w]+:)+(\s+)?)+", sanitized.replace("<p>", "").replace("</p>", "")):
|
||||
print(i)
|
||||
emojis = i.group(0).lower()
|
||||
print(emojis)
|
||||
|
|
Loading…
Reference in New Issue