- Replaces   with spaces in text blocks
This commit is contained in:
@ -6,6 +6,9 @@ use MailPoet\Newsletter\Renderer\StylesHelper;
|
|||||||
class Text {
|
class Text {
|
||||||
static function render($element) {
|
static function render($element) {
|
||||||
$html = $element['text'];
|
$html = $element['text'];
|
||||||
|
// replace with spaces
|
||||||
|
$html = str_replace(' ', ' ', $html);
|
||||||
|
$html = str_replace('\xc2\xa0', ' ', $html);
|
||||||
$html = self::convertBlockquotesToTables($html);
|
$html = self::convertBlockquotesToTables($html);
|
||||||
$html = self::convertParagraphsToTables($html);
|
$html = self::convertParagraphsToTables($html);
|
||||||
$html = self::styleLists($html);
|
$html = self::styleLists($html);
|
||||||
|
Reference in New Issue
Block a user