From 079f0495869068006eb1c587fa583fad19ac5c5d Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 3 Jun 2024 12:20:35 -0700 Subject: [PATCH] feat: bring back syndicated hashtags --- config/collections/index.js | 22 +++++++++++++++++++++- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index aa14d322..2f94fdb5 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -2,6 +2,26 @@ import { DateTime } from 'luxon' const BASE_URL = 'https://coryd.dev' +const tagsToHashtags = (tags) => { + const hashtags = tags.map(tag => { + const words = tag.split(' ') + const hashtag = words.map(word => { + const normalizedWord = word.toLowerCase() + const wordMap = { + 'ai': 'AI', + 'css': 'CSS', + 'ios': 'iOS', + 'javascript': 'JavaScript', + 'macos': 'macOS' + } + if (wordMap[normalizedWord]) return wordMap[normalizedWord] + return word.charAt(0).toUpperCase() + word.slice(1) + }).join('') + return '#' + hashtag + }) + return hashtags.join(' '); +} + export const searchIndex = (collection) => { const searchIndex = [] let id = 0 @@ -55,7 +75,7 @@ export const allContent = (collection) => { items.forEach(item => { const content = { url: `${BASE_URL}${item['url']}`, - title: `${icon}: ${getTitle(item)}${item?.['authors']?.['name'] ? ' via ' + item['authors']['name'] : ''}` + title: `${icon}: ${getTitle(item)}${item?.['authors']?.['name'] ? ' via ' + item['authors']['name'] : ''}${item?.['tags'] ? ' ' + tagsToHashtags(item['tags']) : ''}` } if (item?.['link']) content['url'] = item?.['link'] if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() diff --git a/package-lock.json b/package-lock.json index ab459603..665dfa00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "18.7.9", + "version": "18.8.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "18.7.9", + "version": "18.8.9", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 17622d22..e1b30283 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "18.7.9", + "version": "18.8.9", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {