Quote:
Originally Posted by Vroni
Hi,
i have an epub with tons of pictures. Round about 50% is just a fleuron, and all of them are the same.
The filenames are all numbered in sequence, so there is no chance to identify a picture by its name....
|
Is there some kind of surrounding tag that can be used to identify which image is used as a fleuron?
eg:
<div class="fleuron"><img alt="" src="../Images/01.jpg"/>
</div>
<div class="fleuron"><img alt="" src="../Images/02.jpg"/></div>
<div class="fleuron"><img alt="" src="../Images/15.jpg"/></div>
search: <div class="fleuron"><img alt="" src="../Images/
(.*?).jpg"/></div>
replace: <div class="fleuron"><img alt="" src="../Images/
fleuron.jpg"/></div>
Then run a report and delete all images that are used 0 times.