View Single Post
Old 09-15-2017, 12:35 PM   #148
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,737
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by Leonatus View Post
The report of the plugin shows the message as can be seen on the screenshot.
This message is usually being displayed if NCX ids don't start with a letter.

For example:

Code:
<navPoint id="7a10b9f2" playOrder="1">
If that's the case with your book, simply search in toc.ncx for:

Code:
<navPoint id="
and replace it with:

Code:
<navPoint id="ID
Quote:
Originally Posted by Leonatus View Post
In another book, the plugin shows problems that all concern the content of span-tags. [...] I would like to remove them all, including their content, but the content differs from case to case.
I'm not very good at regular expressions, but the following expression should remove all span tags:

Code:
<span[^>]*>.*?</span>

Last edited by Doitsu; 09-15-2017 at 12:37 PM.
Doitsu is offline   Reply With Quote