From 537d30f3fee94e7bd76e5d4fe2bc32b5d7c08290 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 12 Jun 2024 18:38:20 -0700 Subject: [PATCH] chore: truncate syndicated feed --- config/collections/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/collections/index.js b/config/collections/index.js index 0454a127..aaf61a41 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -79,7 +79,7 @@ export const allContent = (collection) => { } if (item?.['link']) content['url'] = item?.['link'] if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() - if (item?.['description']) content['description'] = `${item['description']}

` + if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 150).join(' ')}...

` const date = getDate ? parseDate(getDate(item)) : null if (date) content['date'] = date aggregateContent.push(content)