chore: cleaner truncation
This commit is contained in:
parent
5503730b13
commit
d070830557
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Reference in a new issue