diff options
author | neodarz <neodarz@neodarz.net> | 2019-05-26 00:20:59 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-05-26 00:20:59 +0200 |
commit | 666bdbd21f92482be07c45cfdb57786e6d99748f (patch) | |
tree | cb6c75d4267a9f0221e74b8969260493749aba06 /utils/utils.py | |
parent | 54dc5304b69a91ea7a48d311b394fba99a185b77 (diff) | |
download | my_new_personal_website-666bdbd21f92482be07c45cfdb57786e6d99748f.tar.xz my_new_personal_website-666bdbd21f92482be07c45cfdb57786e6d99748f.zip |
Move link_img_tags function to external file
Diffstat (limited to '')
-rw-r--r-- | utils/utils.py | 9 |
1 files changed, 9 insertions, 0 deletions
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 <img> tag in <article> 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) |