chore: truncate syndicated feed

This commit is contained in:
Cory Dransfeldt 2024-06-12 18:38:20 -07:00
parent c7bf949098
commit 537d30f3fe
No known key found for this signature in database

View file

@ -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)