You could just "not display" the offending <br />'s using your stylesheet.css file; just add (towards the bottom of the file):

Code:
#productListing .listingDescription+br {
  display: none;
}
That tells the browser that any <br /> tags that directly follow a tag with the class of listingDescription contained in a tag with the ID of productListing should not be displayed