chore: cleaner truncation

This commit is contained in:
Cory Dransfeldt 2024-05-02 17:16:36 -07:00
parent 5503730b13
commit d070830557
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ export default {
}, },
truncateByWordCount: (text, wordCount) => { truncateByWordCount: (text, wordCount) => {
const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/); const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);
if (words.length > wordCount) return `<p>${words.slice(0, wordCount).join(' ')}...</p>` if (words.length > wordCount) return `<p>${words.slice(0, wordCount).join(' ').replace(/[^a-zA-Z0-9]+$/, '')}...</p>`
return text return text
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "13.6.0", "version": "13.6.1",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {