I installed this and it is fantastic. Thanks alot. I did have a problem with some code in the feed I am parsing. As well as keeping bold charecters intact. But I solved it by adding the following code.
I found
PHP Code:
$article['description'] = strip_tags(html_entity_decode(trim($article['description'])));
and added above.
PHP Code:
$article['description'] = str_replace('<b>', '[b]', $article['description']);
$article['description'] = str_replace('</b>', '[/b]', $article['description']);
$article['description'] = str_replace('</b>', '[/b]', $article['description']);
$article['description'] = str_replace('<b>', '[b]', $article['description']);
$article['description'] = str_replace('<br />', "\n\r", $article['description']);
$article['description'] = str_replace('<br />', "\n\r", $article['description']);
And everything was fine. Thanks again for the great hack.