Code Monkey home page Code Monkey logo

Comments (4)

alekdavis avatar alekdavis commented on May 23, 2024

Here is a sample program:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace TestPreMailer
{
    class Program
    {
        static void Main(string[] args)
        {
            string outFile = "Output.html";

            string html =   
                "<html>\r\n" +
                "<head>\r\n" +
                "<title>Test</title>\r\n" +
                "<style type='text/css'>\r\n" +
                "body {\r\n" +
                "  margin: 0;\r\n" +
                "  padding: 0;\r\n" + 
                "  background-color: #fff;\r\n" +
                "}\r\n" +
                "table {\r\n" +
                "  background-color: #fff;\r\n" +
                "  border-spacing: 0;\r\n" +
                "}\r\n" +
                "td {\r\n" +
                "  font-family: Verdana, Arial, Helvetica, sans-serif;\r\n" +
                "  font-size: 13px;\r\n" +
                "  color: #000;\r\n" +
                "  background-color: #fff;\r\n" +
                "  padding: 0;\r\n" +
                "}\r\n" +
                "</style>\r\n" +
                "</head>\r\n" +
                "<body>\r\n" +
                "<table>\r\n" +
                "<tr><td>Привет!</td></tr>\r\n" +
                "<tr><td>Как дела?</td></tr>\r\n" +
                "<tr><td>&copy;</td></tr>\r\n" +
                "</table>\r\n" +
                "</body>\r\n" +
                "</html>";
            PreMailer.Net.PreMailer preMailer = new PreMailer.Net.PreMailer(html);

            var result = preMailer.MoveCssInline
                (
                    removeStyleElements: true,
                    ignoreElements: null,
                    css: null,
                    stripIdAndClassAttributes: true,
                    removeComments: true
                );

            foreach(string warning in result.Warnings)
                Console.WriteLine(warning);

            Console.WriteLine("");

            if (File.Exists(outFile))
                File.Delete(outFile);

            File.WriteAllText(outFile, result.Html, System.Text.Encoding.UTF8);
        }
    }
}

Here is the output:

<html><head>
<title>Test</title>

</head>
<body style="margin: 0;padding: 0;background-color: #fff">
<table style="background-color: #fff;border-spacing: 0">
<tbody><tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;direction: ltr;text-align: left;color: #000;background-color: #fff;padding: 0">&#1055;&#1088;&#1080;&#1074;&#1077;&#1090;!</td></tr>
<tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;direction: ltr;text-align: left;color: #000;background-color: #fff;padding: 0">&#1050;&#1072;&#1082; &#1076;&#1077;&#1083;&#1072;?</td></tr>
<tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;color: #000;background-color: #fff;padding: 0">&#169;</td></tr>
</tbody></table>

</body></html>

I'd expect the output to be:

<html><head>
<title>Test</title>

</head>
<body style="margin: 0;padding: 0;background-color: #fff">
<table style="background-color: #fff;border-spacing: 0">
<tbody><tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;direction: ltr;text-align: left;color: #000;background-color: #fff;padding: 0">Привет!</td></tr>
<tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;direction: ltr;text-align: left;color: #000;background-color: #fff;padding: 0">Как дела?</td></tr>
<tr><td style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 13px;color: #000;background-color: #fff;padding: 0">&copy;</td></tr>
</tbody></table>

</body></html>

from premailer.net.

alekdavis avatar alekdavis commented on May 23, 2024

I'm wondering if fixing this would be as simple as calling CsQuery with appropriate parameters, as described in Output from CsQuery (see Don't encode non-ASCII characters, pass them through as unicode in the Examples section under Options)

from premailer.net.

martinnormark avatar martinnormark commented on May 23, 2024

That would definitely be worth a try. Addition of tbody tag for sure comes from CsQuery, and I suspect encoding issues is rooted in lack of explicitly setting correct encoding when calling CsQuery.

from premailer.net.

alekdavis avatar alekdavis commented on May 23, 2024

Thanks for checking this, Martin.

from premailer.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.