You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is anything you need or I can help in any way to resolve this bug classification that would be most helpful.
An additional observation, it seems that PreMailer is inserting Mac/safari based css tags -webkit-box-sizing: border-box;box-sizing: border-box; as I'm developing on MacOs, but assume that would not be the case under linux, or is there some kind engine configuration to manage that?
I also have a case where base64 encoded images have == at end and the AES SES DotNet Client is miss encoding them to =3D=3D...
Hi,
Per PreMailer.Net ver 2.2.0
I have a CSS file that has base64 encoded images (as generated via webpack).
where
iVBORw0KG...
is the start of the base64 encoded image (truncated for clarity/brevity), and similarly encoded svg's:we have similar for fonts and other artifacts.
With the style linked, and given the HTML:
It seem that the
PreMailer.MoveCssInline
call reduces this to:The
base64
image data (and similarlysvg+xml
data for that matter) is eliminated e.g.base64,iVBORw0KG...
Am I doing something wrong or does PreMailer not currently handle this scenario? If the latter is this fixable?
I have attempted to
ignoreElements: "pt-logo"
to no avail. Any recommendations?Per [this]:(5fd1b6a)
and this CSS
(again data truncated for brevity) apparently works, the only difference I can see I the
url
are spaces and the data is quoted ('
).As an attempted workaround - If I modify the webpack generation as such as to add the need quotes:
This results in the following CSS (note the CSS is unfortunately double quoted):
However the
PreMailer.MoveCssInline
call reduces this to:where it seems to be HTML escaping the
"
's as"
's !!The text was updated successfully, but these errors were encountered: