分享一段之前和ChatGPT沟通得到的代码。
作用为传入一段HTML代码,并获取页面内的H2、H3、H4标签,组装成固定格式的html字符串返回。
const cheerio = require('cheerio');
module.exports = (html) => {
if (!html) return;
const $ = cheerio.load(html);
let toc = "";
let currentH2 = null;
let currentH3 = null;
let els = $("h2, h3, h4");
if(els.length == 0) {
return;
}
$("h2, h3, h4").each((i, el) => {
const tagName = $(el).prop("tagName");
const id = $(el).attr("id");
const title =
...
继续阅读
(68)