Sorry. I don't think we are talking about the same thing. Maybe I wasn't clear.
Until this morning, when creating through the calibre editor a new html file to add to a book it always add in the <head></head> of the new file the links to all css files already in the book.
The result should have been
Quote:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>L'Œuvre au noir</title>
<link href="stylesheet.css" type="text/css" rel="stylesheet"/>
<link href="page_styles.css" type="text/css" rel="stylesheet"/>
</head>
<body>
</body>
</html>
|