This project is unofficial update of https://github.com/3846masa/cheerio-gasify.
Difference to the project is follows.
- Using webpack with gas-webpack-plugin
- Updating cheerio to 1.0.0-rc.2
- Exporting the function
load
as same ascheerio.load
Script ID: 1ReeQ6WO8kKNxoaA_O0XEQ589cIrRvEBA9qcWpNqdOP17i47u6N9M5Xh0
Cheerio (cheeriogs) for Google Apps Script is made available as a script library. This is how you add it to your project:
Select "Resources" > "Libraries..." in the Google Apps Script editor.
Enter the project key (1ReeQ6WO8kKNxoaA_O0XEQ589cIrRvEBA9qcWpNqdOP17i47u6N9M5Xh0) in the "Find a Library" field, and choose "Select". (If you have copied the library, enter instead the project key of your copy.)
Select the highest version number, and choose Cheerio
as the identifier. (Do not turn on Development Mode unless you know what you are doing. The development version may not work.)
Press Save. You can now use the Cheerio (cheeriogs) library in your code.
const content = getContent_('https://en.wikipedia.org');
const $ = Cheerio.load(content);
Logger.log($('#mp-right').text());
const content = getContent_('https://en.wikipedia.org');
const $ = Cheerio.load(content);
Logger.log($('p').first().text());
const html = HtmlService.createHtmlOutputFromFile("index").getContent();
const $ = Cheerio.load(html);
$("#main").append("<p>Cheeriosse!!1</p>");
return HtmlService.createHtmlOutput(
Utilities.formatString("<html>%s</html>", $('html').html())
);