From 50851315ec74af3cad225137935de36904c4c29b Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 16 Mar 2016 11:41:15 +0100 Subject: [PATCH] minor fix in epub better ids for images in content.opf --- librarian/epub.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/librarian/epub.py b/librarian/epub.py index ea96e48..4677229 100644 --- a/librarian/epub.py +++ b/librarian/epub.py @@ -528,11 +528,12 @@ def transform(wldoc, verbose=False, style=None, html_toc=False, functions.reg_mathml_epub(zip) - for filename in os.listdir(ilustr_path): + for i, filename in enumerate(os.listdir(ilustr_path)): file_path = os.path.join(ilustr_path, filename) zip.write(file_path, os.path.join('OPS', filename)) + image_id = 'image%s' % i manifest.append(etree.fromstring( - '' % (filename, filename, guess_type(file_path)[0]))) + '' % (image_id, filename, guess_type(file_path)[0]))) # write static elements mime = zipfile.ZipInfo() -- 2.20.1