Quote:
Originally Posted by edeniz
Uploaded the epub in question.
|
Assuming you're still using the personal.ini that uploaded earlier, the problem is because you're using
chapter_title_strip_pattern to remove chapters titles like 'Chapter 1', but you didn't set
add_chapter_numbers true, so nothing is replacing them.
Relevant settings:
You could add
add_chapter_numbers:true and you'd get chapters '1.', '2.', etc.
You could set
strip_chapter_numbers:false or change to the default
chapter_title_strip_pattern instead of the more aggressive one.
Alternatively, you could experiment with look ahead regex pattern matches for
chapter_title_strip_pattern so you only remove 'Chapter 1' if there's something after it.
I will also consider if I should change the system in some way to prevent this behavior, or if it would ever be desirable.