Closed ushi-as closed 5 months ago
MRML removes all whitespace between consecutive inline elements inside mj-text. This breaks text with simple formatting elements like em or strong.
mj-text
em
strong
With the following input:
<mjml> <mj-body> <mj-text> <p> <em>foo</em> <strong>bar</strong> </p> </mj-text> </mj-body> </mjml>
MRML generates:
<!doctype html> <html> <!-- ... --> <p><em>foo</em><strong>bar</strong></p> <!-- ... --> </html>
Whereas MJML generates:
<!doctype html> <html> <!-- ... --> <p><em>foo</em> <strong>bar</strong></p> <!-- ... --> </html>
Which is expected.
Tell me if you need more information.
MRML removes all whitespace between consecutive inline elements inside
mj-text
. This breaks text with simple formatting elements likeem
orstrong
.With the following input:
MRML generates:
Whereas MJML generates:
Which is expected.
Tell me if you need more information.