Lack of interest Strip tags option for content of Feeder Application in admin.

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

TimWF

Active member
It would be great to have an option to strip all html and specify a tag whitelist on a per RSS feed basis for the Feeder application. Some of the feeds we want to pull in don't do the best formatting job sometimes and it would be nice to be able to normalize them a bit automatically. :)
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
yeah I do this with a bit of sed and cron:

Code:
# create Cleaner versions (strip the stupid img tags out)
sed 's/&lt;img.*gt;/\./g' < $HOSTPATH/Steam-US.xml > $HOSTPATH/US1.XML
sed 's/&lt;img.*gt;/\./g' < $HOSTPATH/Steam-UK.xml > $HOSTPATH/UK1.XML
sed 's/&lt;img.*gt;/\./g' < $HOSTPATH/Steam-AU.xml > $HOSTPATH/AU1.XML

feedburner is terrible at creating content that is rubbish
 
Top Bottom