euangeleo / book-gen

Simplify the editing and generation of books, from manuscript to publishable formats. From a book text written in Markdown, generate both an ebook in ePub format and a typeset, print-ready PDF for a print book.
GNU General Public License v3.0
1 stars 1 forks source link

Use a templating system to prepare chapter content for ebook version #21

Open euangeleo opened 4 years ago

euangeleo commented 4 years ago

A templating system like Jinja would make it easier to create the chapter files for insertion into an ePub ebook, rather than the system now. Currently,

tags are added, but the text still needs to be broken up by chapter, and copied and pasted into the ePub files by hand. Programmatically creating a table of contents, and changing certain Unicode characters into HTML entities could also be done.

euangeleo commented 4 years ago

Is there another tool that will accomplish this goal already? Merovex/verkilo-script will already go from Markdown to ebook & typeset PDF. Maybe this step isn't needed in book-gen, and the editing checks are sufficient.