Quote:
Originally Posted by MerlinMama
When I add a fic, I have a blank space at the top of each file. This translates into an error for the book. I implemented a general regex in calibre editor to fix this, but is there something I can do to remove this? It started when I added my personalized Titlepage_Start/Chapter_Start/output_css in the personal.ini
|
Use [code] tags around ini blocks otherwise we can't see the white space--and it matters.
Code:
## This has a newline right at the beginning:
chapter_start:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
...
## This doesn't:
chapter_start:<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
...