diff --git a/config.js b/config.js index 87d7805..941af64 100644 --- a/config.js +++ b/config.js @@ -6,30 +6,30 @@ import { getReadingBooklogr, getRSSItemTitle, getTraktEpisode, - markdownLinkRegex, + htmlLinkRegex, } from './utils.js' export const items = [ { id: 'blog', - regex: markdownLinkRegex('dylan.weblog.lol'), + regex: htmlLinkRegex('dylan.weblog.lol'), getLatest: async () => getJsonFeedItemTitle('https://dylan.weblog.lol/feed.json'), }, { id: 'pics', - regex: markdownLinkRegex('https://dylan.some.pics/'), + regex: htmlLinkRegex('dylan.some.pics'), getLatest: async () => getJsonFeedItemTitle('https://dylan.some.pics/feed.json'), }, { id: 'letterboxd', - regex: markdownLinkRegex('letterboxd.com/STFUDonny'), + regex: htmlLinkRegex('letterboxd.com/STFUDonny'), getLatest: async () => getLetterboxdActivity('stfudonny', false), }, { id: 'trakt', - regex: markdownLinkRegex('trakt.tv/users/crankle'), + regex: htmlLinkRegex('trakt.tv/users/crankle'), getLatest: async () => getTraktEpisode('crankle', '78e1e87b446901f7e4f0883dd4995cec', false), },