I've got a plugin that modifies the excerpt and the description. Like this:
add_filter('the_content', 'mod_content', 0);
add_filter('the_excerpt', 'mod_excerpt', 0);
But this plugin use the content and excerpt before these filters are used. Does someone know how to fix this?