$('.woocommerce-cart td.product-name a').each(function(){
var htmlName = $(this).text();
var textName = htmlName.replace('
', '').replace('', '').replace('', '');

$(this).text(textName);
});