Well, that's the problem with RSS feeds- different feeds will incorporate HTML content in slightly different ways, so it's impossible for this script to anticipate all of them. In the case of Google, it looks like they've converted all HTML tags to their entities instead. Due to this, you'll need to know a bit of PHP to undo that first inside "getrssbridge.php". In this case, locate the lines:
Code:
$newstring=str_replace(''', '\'', $what); //replace those half valid apostrophe entities with actual apostrophes
$newstring=html_entity_decode($newstring);
return rawurlencode($newstring);
The line in red is new. This should get the Google feed to display correctly, which also takes care of problem 2) above.
Bookmarks