fix: parse excerpts

This commit is contained in:
Cory Dransfeldt 2024-09-24 07:56:10 -07:00
parent 4696b0c383
commit 6ca026af0b
No known key found for this signature in database
4 changed files with 13 additions and 9 deletions

View file

@ -1,7 +1,9 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import markdownIt from 'markdown-it';
import ics from 'ics' import ics from 'ics'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
const md = markdownIt()
const normalizeWord = (word) => { const normalizeWord = (word) => {
const wordMap = { const wordMap = {
@ -124,16 +126,18 @@ export const processContent = (collection) => {
// set unique concert urls // set unique concert urls
if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts` if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts`
if (item?.['description']) { if (item?.['description']) {
content['description'] = `${item['description'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` content['description'] = md.render(item['description'])
} else if (item?.['notes']) { } else if (item?.['notes']) {
content['notes'] = `${item['notes'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` content['notes'] = md.render(item['notes'])
} else { } else {
content['description'] = '' content['description'] = ''
} }
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)
}) })
} }

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.7", "version": "24.19.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.7", "version": "24.19.9",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -1744,9 +1744,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.5.27", "version": "1.5.28",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.27.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.28.tgz",
"integrity": "sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==", "integrity": "sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.7", "version": "24.19.9",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -18,7 +18,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
<h3> <h3>
<a href="{{ post.slug }}">{{ post.title }}</a> <a href="{{ post.slug }}">{{ post.title }}</a>
</h3> </h3>
<p>{{ post.description }}</p> <p>{{ post.description | markdown }}</p>
</article> </article>
{% endfor %} {% endfor %}
{% render "partials/nav/paginator.liquid", pagination:pagination %} {% render "partials/nav/paginator.liquid", pagination:pagination %}