Quote:
Originally Posted by DNSB
Are the current title elements not present, present but empty ( <title></title> ) or present but with the wrong content ( <title>Book_Title</title> ). The first two should be triggering an error using epubcheck.
|
Quote:
Originally Posted by Karellen
Really? It doesn't for me when using <title>Book_Title</title>.
|
That part you quoted is the third condition. The first was not having the title element present, the second was having an empty title element, the third was the wrong content.
Code:
<head>
<== no title element
</head>
Code:
<head>
<title></title> <== empty title element
</head>
Code:
<head>
<title>Book_Title</title> <== incorrect title element
</head>