Quote:
Originally Posted by Pippo53s03
Sorry, I'm really a donkey newbie and maybe I was non clear...
I want to insert directly the image, not the link to it and regex I'm looking for is one to translate:
into
Code:
Fig._3.1 <img alt="Fig_3.1" src="../Images/Fig_3.1.jpg"/>
or
into
Code:
Fig._10.6 <img alt="Fig_10.6" src="../Images/Fig_10.6.jpg"/>

|
That is a little different than what you had originally.
Try:
Code:
search:
Fig._(.*?)
replace:
Fig._\1<img alt="Fig_\1" src="../Images/Fig_\1.jpg"/>
Also, I would highly recommend taking a look at the basic
eProduction tutorial on our wiki...it will help you alot if you choose to make ebooks. There is also some basic
regex examples here. And also a good reference for
HTML and
CSS on W3Schools website.
Cheers!