1.0.4 • Published 3 years ago

cheerio-utils v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

cheerio-utils

基于 cheerio 的几个工具方法

安装

npm i cheerio cheerio-utils

使用示例

const cheerioUtils = require('cheerio-utils');

let html = `<div><p data-src="daa" src="dd">plebale</p></div>`;

console.log(cheerioUtils.removeAttrs(html, ['src', 'data-src']));
// <div><p>plebale</p></div>

已实现的方法

// 替换图片链接
replaceImages(html, image_map);

// 提取图片连接
extractImages(html);

// 移除属性
removeAttrs(html, (remove_attrs = ['style']));

// 移除空白标签
removeBlankLabel(html, (labels = ['p']));

// 替换a标签为文本字符串
replaceAnchorLabel(html);
1.0.2

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago