rsshub
Version:
Make RSS Great Again!
22 lines (21 loc) • 643 B
JavaScript
import { t as getFeed } from "./utils-C0-vkKDf.mjs";
//#region lib/routes/theguardian/editorial.ts
const route = {
path: "/editorial",
categories: ["traditional-media"],
example: "/theguardian/editorial",
radar: [{ source: ["www.theguardian.com/profile/editorial"] }],
name: "Editorial",
maintainers: ["HenryQW"],
handler,
description: "Provides a better reading experience (full text articles) over the official one."
};
function handler() {
return getFeed({
link: "https://www.theguardian.com/profile/editorial",
title: "Editorial",
rss: "https://www.theguardian.com/tone/editorials/rss"
});
}
//#endregion
export { route };