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.

link|improve this question
feedback

3 Answers

You can't parse HTML with RegExp and MySQL is for storing&retrieving data, not filtering it.

Just use http://htmlpurifier.org/ to clean your HTML in PHP.

link|improve this answer
Would this solution leave the database alone, just to do the filtering on after retrieving the content from the MySQL? I would prefer to clean up the database once, instead filtering what it gives every time the PHP runs. – Johann Dyck Nov 23 '11 at 13:29
You can't full parse HTML true - but you can probably recognize enough patterns with regexes to make an SQL approach workable as a one-off cliean up – Paul Dixon Nov 23 '11 at 21:21
See also this question for approaches for doing regex based replacements in MySQL stackoverflow.com/questions/986826/… – Paul Dixon Nov 23 '11 at 21:24
@Johann Dyck you can do filtering before inserting data to data base or just make script to clean up everything in database pernamently (retrieve data -> clean up -> update it back) – Māris Kiseļovs Nov 24 '11 at 7:43
feedback

Maybe it's not the best solution to the problem but here is what I'm doing. I tried some different scripts to get the info from the database, clean it up and post it back with PHP, but nothing really worked that well. Everything I used messed up the data, more than it helped. GIGO.

I decided on using javascript (jQuery) to take all the attributes out of <font> tags and clear the style attribute of all <span> and <p> tags. Everything looks fine after doing this. All future content will be right going into the system, but all the old content has the ugly code still in the database, which is cleaned up enough to display right on the client side.

link|improve this answer
feedback

based on your description php strip_tags is almost everything you are looking for

string strip_tags ( string $str [, string $allowable_tags ] )

allowable_tags

You can use the optional second parameter to specify tags which should not be stripped.

echo strip_tags('<a style="abc">sometext</a><b style="xyz">bold</b>', '<b>');

return

sometext<b style="xyz">bold</b>

you can combine with DomDocument to parse HTML,
look up for the attribute style where the tag is not the allowable tags

link|improve this answer
strip_tags will strip all tags except allowed ones. That's not a solution to question. – Māris Kiseļovs Nov 23 '11 at 13:00
I dun know what are you talking about ... – ajreal Nov 23 '11 at 13:01
Though I asked about removing certain tags, I could work with doing the opposite and telling it what I want to keep instead of what I want to delete. I'll see what I can do ... – Johann Dyck Nov 23 '11 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.