Giter Club home page Giter Club logo

Comments (9)

martinnormark avatar martinnormark commented on June 1, 2024 1
string htmlSource = File.ReadAllText(@"C:\Workspace\testmail.html");
string cssSource = File.ReadAllText(@"C:\Workspace\style.css");

var result = PreMailer.MoveCssInline(htmlSource, css: cssSource);

from premailer.net.

martinnormark avatar martinnormark commented on June 1, 2024

There's an optional css parameter you can specify when calling MoveCssInline.

That means you're responsible for downloading it, but you don't have to shove it into the DOM anymore.

from premailer.net.

xatzz avatar xatzz commented on June 1, 2024

Can you give me a example of how to use it, please?

from premailer.net.

Lion-HC avatar Lion-HC commented on June 1, 2024

Hello!
I noticed that in last update:

PreMailer will download and use external style sheets as long as the value of href ends with .css.

It is great feature!
But unfortunately, ASP.NET (MVC) bundle ends with query, and not contains ".css" at all.

Can you extend CssLinkNodes method to return rel="stylesheet" also?

return elements.Where(e => e.Attributes
                .Any(a => a.Name.Equals("href", StringComparison.OrdinalIgnoreCase) &&
                         (a.Value.EndsWith(".css", StringComparison.OrdinalIgnoreCase) || 
                         (e.Attributes.Any(r => r.Name.Equals("rel", StringComparison.OrdinalIgnoreCase) &&
                                                r.Value.Equals("stylesheet", StringComparison.OrdinalIgnoreCase))))));

from premailer.net.

martinnormark avatar martinnormark commented on June 1, 2024

That should be possible, yes. Fancy a Pull Request with a unit test to prove the feature?

from premailer.net.

DonDavio avatar DonDavio commented on June 1, 2024

I'm facing the same issue and it looks like @Lion-HC's commit will solve it. Do you know if this change will be in 1.5.4?

from premailer.net.

martinnormark avatar martinnormark commented on June 1, 2024

It's in master so as soon as I cut a new release it will be included in the package.

from premailer.net.

DonDavio avatar DonDavio commented on June 1, 2024

Fantastic, thanks very much and thank you for a great library.

from premailer.net.

martinnormark avatar martinnormark commented on June 1, 2024

@DonDavio Your PR and fix for this issue was released yesterday, so grabbing bundles should work now.

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.