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
Hello, and thank you for this very useful library! :)
Mjml.Net does not produce the same result as mjml.io.
Mjml.Net interprets HTML-encoded characters (it "de-encodes" such characters) even if they are "HTML Character Entity Number" instead of "Character Entity Names"..
A very simple example:
using Mjml.Net;varmjmlRenderer=new MjmlRenderer();(var result,var errors)= mjmlRenderer.Render(@"<mj-text>Hello >> World</mj-text>");
Console.WriteLine(result);
Hello, and thank you for this very useful library! :)
Mjml.Net does not produce the same result as mjml.io.
Mjml.Net interprets HTML-encoded characters (it "de-encodes" such characters) even if they are "HTML Character Entity Number" instead of "Character Entity Names"..
A very simple example:
Output:
The output of the same MJML in https://mjml.io/try-it-live/eiXRjriBbY :
How can I fix this, or get around this problem?
The text was updated successfully, but these errors were encountered: