rsshub
Version:
Make RSS Great Again!
65 lines (63 loc) • 2.73 kB
JavaScript
import "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import "./parse-date-BrP7mxXf.mjs";
import "./cache-Bo__VnGm.mjs";
import "./timezone-D8cuwzTY.mjs";
import { t as commonHandler } from "./category-Bl3wpLYS.mjs";
//#region lib/routes/finology/tag.ts
const route = {
path: "/tag/:topic",
categories: ["finance"],
example: "/finology/tag/startups",
parameters: { category: "Refer Table below or find in URL" },
radar: [{ source: ["insider.finology.in/tag/:topic"] }],
name: "Trending Topic",
maintainers: ["Rjnishant530"],
handler,
url: "insider.finology.in/tag",
description: `::: info Topic
| Topic | Link |
| ------------------------ | ------------------------ |
| Investment Decisions | investment-decisions |
| Investing 101 | investing-101 |
| Stock Markets | stock-markets |
| business news india | business-news-india |
| Company Analysis | company-analysis |
| Business and brand tales | business-and-brand-tales |
| Featured | featured |
| Fundamental Analysis | fundamental-analysis |
| Business Story | business-story |
| All Biz | all-biz |
| Stock Analysis | stock-analysis |
| Automobile Industry | automobile-industry |
| Indian Economy | indian-economy |
| Govt's Words | govt%27s-words |
| Behavioral Finance | behavioral-finance |
| Global Economy | global-economy |
| Startups | startups |
| GST | gst |
| Product Review | product-review |
| My Pocket | my-pocket |
| Business Games | business-games |
| Business Models | business-models |
| Indian Indices | indian-indices |
| Banking System | banking-system |
| Debt | debt |
| World News | world-news |
| Technology | technology |
| Regulatory Bodies | regulatory-bodies |
:::`
};
async function handler(ctx) {
const { topic } = ctx.req.param();
return await commonHandler("https://insider.finology.in", `/tag/${topic}`, {
description: (topic$1) => `Everything that Insider has to offer about ${topic$1} for you to read and learn.`,
date: true,
selector: `div.card`
});
}
//#endregion
export { route };