From d07083055722416e233f7fd2f6819fbe9c5bdd25 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 2 May 2024 17:16:36 -0700 Subject: [PATCH] chore: cleaner truncation --- config/filters/index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index b1e58b3d..bb3c82f8 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -64,7 +64,7 @@ export default { }, truncateByWordCount: (text, wordCount) => { const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/); - if (words.length > wordCount) return `

${words.slice(0, wordCount).join(' ')}...

` + if (words.length > wordCount) return `

${words.slice(0, wordCount).join(' ').replace(/[^a-zA-Z0-9]+$/, '')}...

` return text }, diff --git a/package.json b/package.json index 7cc0d538..77157c0c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.6.0", + "version": "13.6.1", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {