Add step for normalizing the opf file specifically.

This commit is contained in:
Ethan Dalool 2019-12-30 13:48:06 -08:00
parent 0075121607
commit 2e070b5fa9

View file

@ -1036,7 +1036,6 @@ class Epub:
if ncx_id: if ncx_id:
self._set_ncx_toc(ncx_id, copy.copy(toc)) self._set_ncx_toc(ncx_id, copy.copy(toc))
def move_nav_to_end(self): def move_nav_to_end(self):
''' '''
Move the nav.xhtml file to the end and set linear=no. Move the nav.xhtml file to the end and set linear=no.
@ -1103,6 +1102,11 @@ class Epub:
self.fix_interlinking_text(id, rename_map, old_relative_to=old_filepaths[id].parent) self.fix_interlinking_text(id, rename_map, old_relative_to=old_filepaths[id].parent)
self.fix_interlinking_ncx(rename_map, old_relative_to=old_ncx_parent) self.fix_interlinking_ncx(rename_map, old_relative_to=old_ncx_parent)
def normalize_opf(self):
for tag in self.opf.descendants:
if tag.name:
tag.name = tag.name.replace('opf:', '')
# COMMAND LINE TOOLS # COMMAND LINE TOOLS
################################################################################ ################################################################################
@ -1379,6 +1383,7 @@ def normalize_argparse(args):
for epub in epubs: for epub in epubs:
print(epub) print(epub)
book = Epub.open(epub) book = Epub.open(epub)
book.normalize_opf()
book.normalize_directory_structure() book.normalize_directory_structure()
book.move_nav_to_end() book.move_nav_to_end()
book.save(epub) book.save(epub)