-
I'm making a personal use downloader for a site I use, which currently spits out html (shouldn't be difficult to change into anything else, but that might break anything non plaintext, should the authors use a table or whatnot). I am saving these into files, chapter by chapter, and converting them to epub by chapter1, chapter2, etc in the command. Upon conversion to epub, these do not show up with anything fancy; it's all just one long bit plain text. How does one set up the chapter file such that it works? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
for reference, the chapter.html files are currently structured as follows: <p>Text here</p> |
Beta Was this translation helpful? Give feedback.
-
You need section headings (e.g. |
Beta Was this translation helpful? Give feedback.
You need section headings (e.g.
<h1>Chapter one</h1>
). See docs for--split-level
.