diff --git a/config/collections/index.js b/config/collections/index.js index 0452d2dd..40034ada 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -1,7 +1,9 @@ import { DateTime } from 'luxon' +import markdownIt from 'markdown-it'; import ics from 'ics' const BASE_URL = 'https://coryd.dev' +const md = markdownIt() const normalizeWord = (word) => { const wordMap = { @@ -124,16 +126,18 @@ export const processContent = (collection) => { // set unique concert urls if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts` + 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']) { - content['notes'] = `${item['notes'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` + content['notes'] = md.render(item['notes']) } else { content['description'] = '' } const date = getDate ? parseDate(getDate(item)) : null if (date) content['date'] = date + aggregateContent.push(content) }) } diff --git a/package-lock.json b/package-lock.json index 46ef9bf0..611f4052 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.19.7", + "version": "24.19.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.19.7", + "version": "24.19.9", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", @@ -1744,9 +1744,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.27", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.27.tgz", - "integrity": "sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==", + "version": "1.5.28", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.28.tgz", + "integrity": "sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==", "dev": true, "license": "ISC" }, diff --git a/package.json b/package.json index 99baef7c..ef387826 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.19.7", + "version": "24.19.9", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/pages/dynamic/posts/index.html b/src/pages/dynamic/posts/index.html index 0d7c10c9..889b0081 100644 --- a/src/pages/dynamic/posts/index.html +++ b/src/pages/dynamic/posts/index.html @@ -18,7 +18,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
{{ post.description }}
+{{ post.description | markdown }}
{% endfor %} {% render "partials/nav/paginator.liquid", pagination:pagination %} \ No newline at end of file