forked from MarseyWorld/MarseyWorld
fix snappy archiving images
parent
100677c1bb
commit
28786342dc
|
@ -215,6 +215,7 @@ def sanitize(sanitized, edit=False):
|
||||||
tag['alt'] = f'![]({tag["data-src"]})'
|
tag['alt'] = f'![]({tag["data-src"]})'
|
||||||
tag['referrerpolicy'] = "no-referrer"
|
tag['referrerpolicy'] = "no-referrer"
|
||||||
|
|
||||||
|
if tag.parent.name != 'a':
|
||||||
a = soup.new_tag("a", href=tag["data-src"], rel="nofollow noopener noreferrer")
|
a = soup.new_tag("a", href=tag["data-src"], rel="nofollow noopener noreferrer")
|
||||||
tag = tag.replace_with(a)
|
tag = tag.replace_with(a)
|
||||||
a.append(tag)
|
a.append(tag)
|
||||||
|
|
|
@ -1135,9 +1135,10 @@ def submit_post(v, sub=None):
|
||||||
gevent.spawn(archiveorg, newposturl)
|
gevent.spawn(archiveorg, newposturl)
|
||||||
|
|
||||||
captured = []
|
captured = []
|
||||||
for i in list(snappy_url_regex.finditer(post.body_html)):
|
body_for_snappy = post.body_html.replace(' data-src="', ' src="')
|
||||||
if i.group(0) in captured: continue
|
for i in list(snappy_url_regex.finditer(body_for_snappy)):
|
||||||
captured.append(i.group(0))
|
if i.group(1) in captured: continue
|
||||||
|
captured.append(i.group(1))
|
||||||
|
|
||||||
href = i.group(1)
|
href = i.group(1)
|
||||||
if not href: continue
|
if not href: continue
|
||||||
|
|
Loading…
Reference in New Issue