Quote:
Originally Posted by Matt Butts
A nice add-in to Sigil would be a search and replace like Adobe Dreamweaver uses, where you can look for specific tags with specific attributes and change them, so you could globally change (for example) all instances of <span style="font-style:italic;"> and replace them - and their closing tags - with <em> and </em>.
|
That is already possible, so I am not quite sure you want...
If you search for: <span style="font-style:italic;">(.*?)</span> and replace it by <em>\1</em> is would normally work fine.