ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 Current Path : /var/www/talentgenesis_admin_backend/node_modules/juice/ |
| Current File : /var/www/talentgenesis_admin_backend/node_modules/juice/client.js |
'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;