rsshub
Version:
Make RSS Great Again!
36 lines (35 loc) • 1.01 kB
JavaScript
import { t as rofetch } from "./ofetch-W1aeTHCo.mjs";
import { load } from "cheerio";
//#region lib/routes/yidoutang/guide.ts
const route = {
path: "/guide",
categories: ["new-media"],
example: "/yidoutang/guide",
name: "文章",
maintainers: ["sanmmm"],
handler
};
async function handler() {
const url = "http://www.yidoutang.com/guide.html";
const $ = load(await rofetch(url));
return {
title: "一兜糖 - 文章",
description: "一兜糖 - 文章",
link: url,
item: $(".main .guide-items > .guide-item").toArray().map((ele) => {
const $item = $(ele);
const titleNode = $item.find(".title > a");
const thumbnail = $item.find("a > img").attr("src");
const infoNode = $item.find(".info");
const desc = infoNode.find(".desc").text();
return {
title: titleNode.text(),
link: titleNode.attr("href"),
description: [`简介: ${desc}`, `<img src="${thumbnail}"/>`].join("<br/>"),
author: infoNode.find(".user a").text()
};
})
};
}
//#endregion
export { route };