View Single Post
Old 08-03-2023, 06:23 PM   #6
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,845
Karma: 169712582
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by DNSB View Post
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 View Post
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>
DNSB is offline   Reply With Quote