Didn't have time to build a control panel and release it as a plugin. So, if you want to try this quick and dirty method add this to the functions.php file for the theme you are currently using:
function removeFromFeed($string){
global $wp_query;
$start="[start]";
$end="[end]";
if(is_feed()){
$string = " ".$string;
$ini = strpos($string,$start);
if ($ini == 0) return "";
$ini += strlen($start);
$len = strpos($string,$end,$ini) - $ini;
$remove = substr($string,$ini,$len);
$display = str_ireplace($start.$remove.$end,"",$string);
}
else{
$string = str_ireplace($start,"",$string);
$string = str_ireplace($end,"",$string);
$display = $string;
}
return $display;
}
add_filter('the_content', 'removeFromFeed');
1. Add to functions.php
2. Enclose what you want to exclude from your feed in [start] [end] on the html tab of your post
3. Anything weird happens remove the function from the file.
Hope that helps.