To answer my own question: I have used Textmate (a text editor for Mac) and I used regular expressions replacing:
<svg.*viewbox="0 0 (\d\d\d)\s(\d\d\d).*xlink:href="(.*)".*</svg>
with:
<div class="center"> <img src="$3" width="$1" height="$2" alt="$3"/></div>
I am posting here because maybe someone will hit the same issue someday.
|