You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. # inline-css [![npm](http://img.shields.io/npm/v/inline-css.svg?style=flat)](https://badge.fury.io/js/inline-css) [![Build Status](https://travis-ci.org/jonkemp/inline-css.svg?branch=master)](https://travis-ci.org/jonkemp/inline-css) [![Coverage Status](https://coveralls.io/repos/jonkemp/inline-css/badge.svg?branch=master&service=github)](https://coveralls.io/github/jonkemp/inline-css?branch=master)
  2. [![NPM](https://nodei.co/npm/inline-css.png?downloads=true)](https://nodei.co/npm/inline-css/)
  3. > Inline your CSS properties into the `style` attribute in an html file. Useful for emails.
  4. Inspired by the [juice](https://github.com/Automattic/juice) library.
  5. ## Features
  6. - Uses [cheerio](https://github.com/cheeriojs/cheerio) instead of jsdom
  7. - Works on Windows
  8. - Preserves Doctype
  9. - Modular
  10. - Gets your CSS automatically through style and link tags
  11. - Functions return [A+ compliant](https://promisesaplus.com/) Promises
  12. ## How It Works
  13. This module takes html and inlines the CSS properties into the style attribute.
  14. `/path/to/file.html`:
  15. ```html
  16. <html>
  17. <head>
  18. <style>
  19. p { color: red; }
  20. </style>
  21. <link rel="stylesheet" href="style.css">
  22. </head>
  23. <body>
  24. <p>Test</p>
  25. </body>
  26. </html>
  27. ```
  28. `style.css`
  29. ```css
  30. p {
  31. text-decoration: underline;
  32. }
  33. ```
  34. Output:
  35. ```html
  36. <html>
  37. <head>
  38. </head>
  39. <body>
  40. <p style="color: red; text-decoration: underline;">Test</p>
  41. </body>
  42. </html>
  43. ```
  44. ## What is this useful for ?
  45. - HTML emails. For a comprehensive list of supported selectors see
  46. [here](http://www.campaignmonitor.com/css/)
  47. - Embedding HTML in 3rd-party websites.
  48. - 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.
  49. ## Install
  50. Install with [npm](https://npmjs.org/package/inline-css)
  51. ```
  52. npm install --save inline-css
  53. ```
  54. ## Usage
  55. ```js
  56. var inlineCss = require('inline-css');
  57. var html = "<style>div{color:red;}</style><div/>";
  58. inlineCss(html, options)
  59. .then(function(html) { console.log(html); });
  60. ```
  61. ## API
  62. ### inlineCss(html, options)
  63. #### options.extraCss
  64. Type: `String`
  65. Default: `""`
  66. Extra css to apply to the file.
  67. #### options.applyStyleTags
  68. Type: `Boolean`
  69. Default: `true`
  70. Whether to inline styles in `<style></style>`.
  71. #### options.applyLinkTags
  72. Type: `Boolean`
  73. Default: `true`
  74. Whether to resolve `<link rel="stylesheet">` tags and inline the resulting styles.
  75. #### options.removeStyleTags
  76. Type: `Boolean`
  77. Default: `true`
  78. Whether to remove the original `<style></style>` tags after (possibly) inlining the css from them.
  79. #### options.removeLinkTags
  80. Type: `Boolean`
  81. Default: `true`
  82. Whether to remove the original `<link rel="stylesheet">` tags after (possibly) inlining the css from them.
  83. #### options.url
  84. Type: `String`
  85. Default: `filePath`
  86. How to resolve hrefs. Must be a string of one character or more. **Required**.
  87. Relative urls in links will have this value prepended to them. So these links:
  88. * `<a href="page-relative">Page</a>`
  89. * `<a href="/root-relative">Root</a>` <- _note leading /_
  90. With this option:
  91. ```js
  92. inlineCss(html, { url: 'http://example.com/mushroom'})
  93. .then(function(html) { console.log(html); });
  94. ```
  95. Will result in
  96. * `<a href="http://example.com/mushroom/page-relative">Page</a>`
  97. * `<a href="http://example.com/root-relative">Root</a>`
  98. If you don't need this feature, simply set the property to a short string eg `{url: ' '}` (one space) and everything will work.
  99. #### options.preserveMediaQueries
  100. Type: `Boolean`
  101. Default: `false`
  102. Preserves all media queries (and contained styles) within `<style></style>` tags as a refinement when `removeStyleTags` is `true`. Other styles are removed.
  103. #### options.applyWidthAttributes
  104. Type: `Boolean`
  105. Default: `false`
  106. Whether to use any CSS pixel widths to create `width` attributes on elements.
  107. #### options.applyTableAttributes
  108. Type: `Boolean`
  109. Default: `false`
  110. Whether to apply the `border`, `cellpadding` and `cellspacing` attributes to `table` elements.
  111. #### options.removeHtmlSelectors
  112. Type: `Boolean`
  113. Default: `false`
  114. Whether to remove the `class` and `id` attributes from the markup.
  115. #### options.codeBlocks
  116. Type: `Object`
  117. Default: `{ EJS: { start: '<%', end: '%>' }, HBS: { start: '{{', end: '}}' } }`
  118. An object where each value has a `start` and `end` to specify fenced code blocks that should be ignored during parsing and inlining. For example, Handlebars (hbs) templates are `HBS: {start: '{{', end: '}}'}`. `codeBlocks` can fix problems where otherwise inline-css might interpret code like `<=` as HTML, when it is meant to be template language code. Note that `codeBlocks` is a dictionary which can contain many different code blocks, so don't do `codeBlocks: {...}` do `codeBlocks.myBlock = {...}`.
  119. ### Special markup
  120. #### data-embed
  121. When a data-embed attribute is present on a <style></style> tag, inline-css will not inline the styles and will not remove the <style></style> tags.
  122. This can be used to embed email client support hacks that rely on css selectors into your email templates.
  123. ### cheerio options
  124. Options to passed to [cheerio](https://github.com/cheeriojs/cheerio).
  125. ## Contributing
  126. See the [CONTRIBUTING Guidelines](https://github.com/jonkemp/inline-css/blob/master/CONTRIBUTING.md)
  127. ## License
  128. MIT © [Jonathan Kemp](http://jonkemp.com)