rsshub
Version:
Make RSS Great Again!
58 lines (55 loc) • 2.47 kB
JavaScript
import { t as commonHandler } from "./category-BId8GKum.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) => `Everything that Insider has to offer about ${topic} for you to read and learn.`,
date: true,
selector: "div.card"
});
}
//#endregion
export { route };