fix: parse excerpts
This commit is contained in:
parent
4696b0c383
commit
6ca026af0b
4 changed files with 13 additions and 9 deletions
|
@ -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)
|
||||
})
|
||||
}
|
||||
|
|
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -18,7 +18,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
|
|||
<h3>
|
||||
<a href="{{ post.slug }}">{{ post.title }}</a>
|
||||
</h3>
|
||||
<p>{{ post.description }}</p>
|
||||
<p>{{ post.description | markdown }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
||||
{% render "partials/nav/paginator.liquid", pagination:pagination %}
|
Reference in a new issue