diff --git a/src/calibre/ebooks/oeb/base.py b/src/calibre/ebooks/oeb/base.py index 74d17da6d3..63f9687763 100644 --- a/src/calibre/ebooks/oeb/base.py +++ b/src/calibre/ebooks/oeb/base.py @@ -167,7 +167,7 @@ def itercsslinks(raw): yield match.group(1), match.start(1) -_link_attrs = set(html.defs.link_attrs) | {XLINK('href'), 'poster'} +_link_attrs = set(html.defs.link_attrs) | {XLINK('href'), 'poster', 'altimg'} def iterlinks(root, find_links_in_css=True):