Quote:
Originally Posted by Tex2002ans
What? You mean the thing you're supposed to immediately click through as fast as possible and X right out of?
Insert > Split Marker (Ctrl+Shift+Enter) places this code within your EPUB:
Code:
<hr class="sigil_split_marker" />
then pressing Edit > Split At Markers (F6) splits the HTML files wherever that code is placed.
Or, like you mentioned, this can be done on a mass scale by using Search/Replace:
Search: <h2
Replace: <hr class="sigil_split_marker" /><h2
This looks for all "<h2" (or whatever else you use for chapter titles), then a simple F6 splits your entire book in one shot. 
|
This is super useful, thank you!