<content type="<?php bloginfo('html_type'); ?>" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
を
<content type="<?php bloginfo('html_type'); ?>" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php $content = get_the_content('', 0, ''); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); echo wpj_utf8_encode($content); ?>]]></content>
に置き換えでどうでしょう。
一応手元の ME2.0.9 で動きました。書き換え後にエントリを更新すると反映されると思います。