mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
feed title changed to English route path changed exclude 'no posts found' messages (always) custom route params: exclude forwarded/reply/service messages (selectable) exclude unsupported messages (selectable, default) remove link preview (selectable) remove metadata (via bot / forwarded from / reply to) (selectable) add forwarded message author (selectable, default) add inline buttons (selectable) remove media tags in title (selectable) non-emoji media tags (selectable) search query (selectable, retain backward compatibility) message types newly supported / enhanced: reply (previous not in media tags, lacks of via bot) forwarded (previously not in media tags, lacks of via bot) service (previous not in media tags, img not extracted) via bot (previous unrecognized, treated as normal messages) video (previous use another emoji as media tag) GIF (previous unrecognized, treated as video) poll (previous only poll title) voice (previous use another emoji as media tag, no title/content) music (previous unrecognized, treated as document) document (previous no content, broken if multiple exist) location (previous only media tag) contact (previous totally unsupported) sticker (previous only media tag) animated sticker (previous totally unsupported) unsupported (previous totally unsupported) misc: fix emoji in posts: weird format (Italic and Bold) fix title: lacks of spaces fix title: use pubDate even if media tags exist fix broken documents message if multiple documents exist fix mistaken exception description fix media sequence: video always at last, #4777 fix: autofilled title (pubDate) not in UTC use cache minor refactor Signed-off-by: Rongrong <15956627+Rongronggg9@users.noreply.github.com>
6 lines
222 B
JavaScript
6 lines
222 B
JavaScript
module.exports = function (router) {
|
|
router.get('/channel/:username/:routeParams?', require('./channel'));
|
|
router.get('/stickerpack/:name', require('./stickerpack'));
|
|
router.get('/blog', require('./blog'));
|
|
};
|