rsshub
Version:
Make RSS Great Again!
30 lines (29 loc) • 895 B
JavaScript
import { t as buildData } from "./common-config-C95bOiLi.mjs";
//#region lib/routes/stratechery/index.ts
const route = {
path: "/",
categories: ["blog"],
example: "/stratechery",
name: "Blog",
maintainers: ["chazeon"],
handler
};
async function handler() {
const link = "https://stratechery.com/";
return await buildData({
link,
url: link,
title: "Stratechery by Ben Thompson",
author: "Ben Thompson",
description: "Stratechery provides analysis of the strategy and business side of technology and media, and the impact of technology on society. ",
item: {
item: "article",
title: `$('article > header > h1 > a').text()`,
link: `$('article > header > h1 > a').attr('href')`,
pubDate: `parseDate($('article .entry-date').attr('datetime'))`,
description: `$('article > .entry-content').html().replace(/%/g, '%')`
}
});
}
//#endregion
export { route };