20 lines
711 B
JavaScript
20 lines
711 B
JavaScript
module.exports = {
|
|
'cna.com.tw': {
|
|
_name: '中央通訊社',
|
|
'.': [
|
|
{
|
|
title: '分类',
|
|
docs: 'https://docs.rsshub.app/routes/traditional-media#zhong-yang-tong-xun-she',
|
|
source: ['/list/:id', '/topic/newstopic/:id'],
|
|
target: (params) => `/cna/${params.id.replace('.aspx', '')}`,
|
|
},
|
|
{
|
|
title: '分类(网页爬虫方法)',
|
|
docs: 'https://docs.rsshub.app/routes/traditional-media#zhong-yang-tong-xun-she',
|
|
source: ['/list/:id'],
|
|
target: (params) => `/cna/web/${params.id.replace('.aspx', '')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|