chore: truncate syndicated feed
This commit is contained in:
parent
c7bf949098
commit
537d30f3fe
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export const allContent = (collection) => {
|
||||||
}
|
}
|
||||||
if (item?.['link']) content['url'] = item?.['link']
|
if (item?.['link']) content['url'] = item?.['link']
|
||||||
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
|
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
|
||||||
if (item?.['description']) content['description'] = `${item['description']}<br/><br/>`
|
if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 150).join(' ')}...<br/><br/>`
|
||||||
const date = getDate ? parseDate(getDate(item)) : null
|
const date = getDate ? parseDate(getDate(item)) : null
|
||||||
if (date) content['date'] = date
|
if (date) content['date'] = date
|
||||||
aggregateContent.push(content)
|
aggregateContent.push(content)
|
||||||
|
|
Reference in a new issue