Created
March 2, 2016 23:15
-
-
Save jeffreysbrother/89219ddf3895795e480b to your computer and use it in GitHub Desktop.
Automatically inline all the CSS in an HTML email (using the grunt-inline-css plugin by jgallen23)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.initConfig({ | |
inlinecss: { | |
main: { | |
options: { | |
removeStyleTags: false, | |
preserveImportant: true, | |
preserveMediaQueries: true, | |
webResources: { | |
images: false | |
} | |
}, | |
files: { | |
'dist/email-1.html': 'email-1.html', | |
'dist/email-2.html': 'email-2.html', | |
'dist/email-3.html': 'email-3.html', | |
'dist/email-4.html': 'email-4.html', | |
'dist/email-5.html': 'email-5.html', | |
'dist/email-6.html': 'email-6.html', | |
'dist/email-7.html': 'email-7.html', | |
'dist/email-8.html': 'email-8.html' | |
} | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-inline-css'); | |
grunt.registerTask('default', ['inlinecss']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment