How to remove <br/> from feeds
If your feeds contain <br/> tag and you want to remove them then you need to add the following code to your child theme's function.php or to a site specific plugin.
add_filter( 'feedzy_summary_output', 'feedzy_summary_output', 10, 4 ); function feedzy_summary_output( $contentSummary, $newLink, $feedURL, $item ) { return html_entity_decode($contentSummary); }