View Single Post
Old 04-02-2025, 02:38 PM   #3
Urnoev
Junior Member
Urnoev began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Mar 2024
Device: Kobo Libra 2
Ah, a shame. At least I am not alone, the problem you describe in your post is the exact same I'm having and what motivated me to ask here.

I'm assuming you have found some kind of solution of your own for this, but just in case anyone's interested:
I've built a (ugly) command chain for myself to check for such tags in my extracted EPUB files:
Code:
grep -r -n -I -P "<[^\s/]*>" | grep -P "\.xhtml" | grep -P -v "nav\.xhtml" | grep -P -v "<head>" | grep -P -v "<title>" | grep -P -v "<body>" | grep -P -v "<p>" | grep -P -v "<li>" | grep -P -v "<tbody>" | grep -P -v "<tr>" | grep -P -v "<td>" | awk '{print $0,"\n"}' | head -n -1
Urnoev is offline   Reply With Quote