SLaks / Styliner

Turns CSS stylesheets into inline style="" attributes for HTML emails
http://styliner.slaks.net
124 stars 20 forks source link

Does not inline mustache inserted stylings #31

Open psalv opened 5 years ago

psalv commented 5 years ago

I would expect the following code to compile with the mustache templating inlined when keepInvalid is set to true:

<div style="color: white; background-color: {{color}}"></div>

My current work around is to escape the mustache braces, however this causes my unbuilt file to differ in styling from my built file which is not ideal.

ex. of work around

<div style="color: white; background-color: \{\{color\}\}"></div>