- Replaces &nbsp with spaces in text blocks

This commit is contained in:
Vlad
2016-11-06 20:04:18 -05:00
parent af36e7a0d9
commit d4b39cb1f4

View File

@ -6,6 +6,9 @@ use MailPoet\Newsletter\Renderer\StylesHelper;
class Text {
static function render($element) {
$html = $element['text'];
// replace   with spaces
$html = str_replace(' ', ' ', $html);
$html = str_replace('\xc2\xa0', ' ', $html);
$html = self::convertBlockquotesToTables($html);
$html = self::convertParagraphsToTables($html);
$html = self::styleLists($html);