I'm redesigning a web site that has a bunch of tags in the content pasted in from Word. I would like to get rid of every instance of a font tag.
I would also like to get rid of all the inline style usually put in with
<span style="font-family:Verdana, etc.;">...</span>
I want to keep all the a, em, br, strong tags, so I don't want to strip all tags just the ones that effect the stylings of the content.
This content is all in a MySQL database and a MySQL solution is preferred over a PHP solution, but I will take either at this point.