I have a lot of old html files that I need to update. Hopefully, not manually.
I can use a find/replace app to go through a directory and find all with <a name=
and replace it <span id=
since "name" is deprecated. How would I then find all of the correct endtags and convert </a>
to </span>
without ruining all hyperlinks?
TIA, Linda
edit: I am using a Mac.