Code Monkey home page Code Monkey logo

gulp-inline-css's Introduction

gulp-inline-css Build Status Coverage Status

NPM

Inline your CSS properties into the style attribute in an html file. Useful for emails.

Inspired by the grunt plugin grunt-inline-css. Uses the inline-css module.

What's new in 3.0?

How It Works

This gulp plugin takes an html file and inlines the CSS properties into the style attribute.

/path/to/file.html:

<html>
<head>
  <style>
    p { color: red; }
  </style>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <p>Test</p>
</body>
</html>

style.css

p {
  text-decoration: underline;
}

Output:

<html>
<head>
</head>
<body>
  <p style="color: red; text-decoration: underline;">Test</p>
</body>
</html>

What is this useful for ?

  • HTML emails. For a comprehensive list of supported selectors see here
  • Embedding HTML in 3rd-party websites.
  • Performance. Downloading external stylesheets delays the rendering of the page in the browser. Inlining CSS speeds up this process because the browser doesn't have to wait to download an external stylesheet to start rendering the page.

Install

Install with npm

npm install --save-dev gulp-inline-css

Usage

var gulp = require('gulp'),
    inlineCss = require('gulp-inline-css');

gulp.task('default', function() {
    return gulp.src('./*.html')
        .pipe(inlineCss())
        .pipe(gulp.dest('build/'));
});

With options:

var gulp = require('gulp'),
    inlineCss = require('gulp-inline-css');

gulp.task('default', function() {
    return gulp.src('./*.html')
        .pipe(inlineCss({
	        	applyStyleTags: true,
	        	applyLinkTags: true,
	        	removeStyleTags: true,
	        	removeLinkTags: true
        }))
        .pipe(gulp.dest('build/'));
});

Options are passed directly to inline-css.

API

inlineCss(options)

options.extraCss

Type: String
Default: ""

Extra css to apply to the file.

options.applyStyleTags

Type: Boolean
Default: true

Whether to inline styles in <style></style>.

options.applyLinkTags

Type: Boolean
Default: true

Whether to resolve <link rel="stylesheet"> tags and inline the resulting styles.

options.removeStyleTags

Type: Boolean
Default: true

Whether to remove the original <style></style> tags after (possibly) inlining the css from them.

options.removeLinkTags

Type: Boolean
Default: true

Whether to remove the original <link rel="stylesheet"> tags after (possibly) inlining the css from them.

options.url

Type: String
Default: filePath

How to resolve hrefs.

options.preserveMediaQueries

Type: Boolean
Default: false

Preserves all media queries (and contained styles) within <style></style> tags as a refinement when removeStyleTags is true. Other styles are removed.

options.applyWidthAttributes

Type: Boolean
Default: false

Whether to use any CSS pixel widths to create width attributes on elements.

options.applyTableAttributes

Type: Boolean
Default: false

Whether to apply the border, cellpadding and cellspacing attributes to table elements.

options.removeHtmlSelectors

Type: Boolean
Default: false

Whether to remove the class and id attributes from the markup.

License

MIT © Jonathan Kemp

gulp-inline-css's People

Contributors

jonkemp avatar discojonathan avatar brettjashford avatar jfache avatar

Watchers

James Augustus Hall avatar James Cloos avatar Geren White avatar ron williams avatar dev avatar Evaldas Vaitkus avatar Gal Cohen avatar dave avatar Stephanie Zhu avatar Cahle Johnson avatar Jared Kass avatar Alpere Fischl avatar Teddy Ortega avatar Daniel Webber avatar Jason Stinson avatar Jevgenij Podskokov avatar Munesh Sharma avatar Aaron Horton avatar  avatar Caroline Ho avatar Luis Sergio Fernández avatar Eric Willenson avatar Corbin Schwartz avatar Daniel Gonzalez avatar  avatar Natasha avatar Mark Tan avatar Rona (Yanrong Wo) avatar  avatar James Kolsby avatar Gaurav Kalra avatar Nick Ivers avatar Jaimie Li avatar Aaron Hill avatar Logan May avatar Sebastian Ramirez-Brunner avatar Michael Grinthal avatar  avatar Tyler Pewarski avatar Shanie Jeanat avatar Vytautas Sugintas avatar William Liang avatar Abe Peterkin avatar Thomas Goodhew avatar John Rodriguez avatar  avatar Siddhahast Mohapatra avatar Josh Mazen avatar Phillipe Bojorquez avatar Raj Kumar avatar Alex Savitt avatar  avatar  avatar Dominykas avatar Natalia Jacobowitz avatar Rachel Holmes avatar Matthew Bond avatar Meng Xu avatar  avatar Shobhit Ranjan avatar  avatar

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.