CRLF in epub
authorJan Szejko <janek37@gmail.com>
Fri, 23 Nov 2018 15:04:42 +0000 (16:04 +0100)
committerJan Szejko <janek37@gmail.com>
Fri, 23 Nov 2018 15:17:09 +0000 (16:17 +0100)
librarian/epub.py

index 8d4e73f..b1431a9 100644 (file)
@@ -462,6 +462,7 @@ def transform(wldoc, verbose=False, style=None, html_toc=False,
                     doctype='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"' +
                             ' "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'
                 )
+                html_string = re.sub(ur'([^\r])\n', ur'\1\r\n', html_string)
             zip.writestr('OPS/part%d.html' % chunk_counter, html_string)
             add_to_manifest(manifest, chunk_counter)
             add_to_spine(spine, chunk_counter)