From 666bdbd21f92482be07c45cfdb57786e6d99748f Mon Sep 17 00:00:00 2001 From: neodarz Date: Sun, 26 May 2019 00:20:59 +0200 Subject: Move link_img_tags function to external file --- utils/utils.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'utils/utils.py') diff --git a/utils/utils.py b/utils/utils.py index eec10adf..bc42291c 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -139,3 +139,12 @@ def make_sitemap_url_element(link, updated=None, changefreq=None, priority=None) priority_elem.text = "%.1f" % priority urlelem.append(priority_elem) return urlelem + +def link_img_tags(soup): + """Convert each tag in
to a link to its original.""" + if not soup.article: + return + for img_tag in soup.article.find_all("img"): + a_tag = soup.new_tag("a", href=img_tag["src"], target="_blank") + a_tag.insert(0, copy.copy(img_tag)) + img_tag.replace_with(a_tag) -- cgit v1.2.1