我下载了一个压缩html的插件
转换后中文变得不可阅读
我找到了解决方式为添加参数
cheerio.load(html,{decodeEntities: false});
但是问题在于 别人的代码
是直接.pip(cheerio(function($)
这样的嵌套 不知道这种情况下cheerio.load方法如何使用了
在下实新手.在是看不懂了.
而且不知道从何查起了.
自己折腾半天 实在是无解
所以只好来提问求助.
希望前辈们指点一下
非常感谢
gulp.task('indexHtml', function() {
return gulp.src('index.html')
.pipe(cheerio(function ($) {
$('script').remove();
$('link').remove();
$('body').append('<script src="skin/zhuce/MergeMin/app.full.min.js"></script>');
$('head').append('<link rel="stylesheet" href="skin/zhuce/MergeMin/app.full.min.css">');
}))
.pipe(gulp.dest('test/'));
});
看代码应该是用的gulp-cheerio
解决方法: