Merge branch 'main' of github.com:cdransf/coryd.dev
This commit is contained in:
commit
5ac8ab24c7
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module.exports = async function () {
|
||||||
getExtraEntryFields: (feedEntry) => {
|
getExtraEntryFields: (feedEntry) => {
|
||||||
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
|
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
|
||||||
return {
|
return {
|
||||||
image: images.length ? images.map((x) => x.replace(/.*src="([^"]*)".*/, '$1'))[0] : '',
|
image: images.length ? images.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0] : '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
|
|
Reference in a new issue