-
Notifications
You must be signed in to change notification settings - Fork 221
/
client.js
29 lines (23 loc) · 1.01 KB
/
client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
var cheerio = require('./lib/cheerio');
var makeJuiceClient = require('./lib/inline');
/**
* Note that makeJuiceClient will take a base object (in this case a function) and enhance it
* with a lot of useful properties and functions.
*
* This client adopts cheerio as a DOM parser and adds an "inlineContent" function that let
* users to specify the CSS to be inlined instead of extracting it from the html.
*
* The weird "makeJuiceClient" behaviour is there in order to keep backward API compatibility.
*/
var juiceClient = makeJuiceClient(function(html,options) {
return cheerio(html, { xmlMode: options && options.xmlMode}, juiceDocument, [options]);
});
var juiceDocument = function(html, options) {
return juiceClient.juiceDocument(html, options);
}
juiceClient.inlineContent = function(html, css, options) {
return cheerio(html, { xmlMode: options && options.xmlMode}, juiceClient.inlineDocument, [css, options]);
};
juiceClient.codeBlocks = cheerio.codeBlocks;
module.exports = juiceClient;