I couldn't resist, here is an incredibly complex Gregarius plugin to highlight certain keywords in an rss article. There's no user interface to specify keywords, you have to edit this file. Store this in your Gregarius plugins folder and enable it in the admin.
1 2 <?php 3 4 /// Name: Keyword Highlighter 5 /// Author: Peter Wilkinson 6 /// Description: Highlight certain words in feeds 7 /// Version: 0.0 8 function __HighlightStuff( $in) 9 { 10 $output = preg_replace('/\b(python|django)\b/i', '<span style="color:red;font-size: larger">\\1</span>', $in); 11 12 return $output; 13 } 14 15 rss_set_hook('rss.plugins.import.description','__HighlightStuff'); 16 ?>
This will highlight the words 'python' and 'django'. More words can be added between the brackets, separated by | characters.
Twitterings

This does break if the keywords are found in urls in anchor tags... needs some more regular expression study.
Peter