from librarian import RDFNS, WLNS, NCXNS, OPFNS, XHTMLNS, OutputFile
from librarian.cover import WLCover, FutureOfCopyrightCover
-
+from librarian.latex import LatexFragment
from librarian import functions, get_resource
functions.reg_person_name()
return output_html, toc, chars
+def flatten_image_paths(wldoc):
+ root = wldoc.edoc.getroot()
+ for node in root.findall(".//ilustr"):
+ node.attrib['src'] = os.path.basename(node.attrib['src'])
+ return wldoc
+
+def render_latex(wldoc, prefix="latex"):
+ """
+ Renders <latex>CODE</latex> as images and returns
+ (changed_wldoc, [ (epub_filepath1, latexfragment_object1), ... ]
+"""
+ root = wldoc.edoc.getroot()
+ latex_nodes = root.findall(".//latex")
+ images = []
+ for ln in latex_nodes:
+ fragment = LatexFragment(ln.text, resize=40)
+ images.append((os.path.join(prefix, fragment.filename), fragment))
+ ln.tag = "img"
+ ln.text = os.path.join(prefix, fragment.filename)
+
+ return wldoc, images
+
+
def transform(wldoc, verbose=False,
style=None, html_toc=False,
sample=None, cover=None, flags=None, resources=None,
if main_text.tag == RDFNS('RDF'):
main_text = None
+ flatten_image_paths(wldoc)
+
if main_text is not None:
for chunk_xml in chop(main_text):
empty = False
if not style:
style = get_resource('epub/style.css')
zip.write(style, os.path.join('OPS', 'style.css'))
+
+ document, latex_images = render_latex(document)
+ for image in latex_images:
+ zip.write(image[1].path, os.path.join('OPS', image[0]))
+ image[1].remove()
+
if resources:
if os.path.isdir(resources):
for dp, dirs, files in os.walk(resources):