feat: bring back syndicated hashtags

This commit is contained in:
Cory Dransfeldt 2024-06-03 12:20:35 -07:00
parent a18d0049ba
commit 079f049586
No known key found for this signature in database
3 changed files with 24 additions and 4 deletions

View file

@ -2,6 +2,26 @@ import { DateTime } from 'luxon'
const BASE_URL = 'https://coryd.dev' 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) => { export const searchIndex = (collection) => {
const searchIndex = [] const searchIndex = []
let id = 0 let id = 0
@ -55,7 +75,7 @@ export const allContent = (collection) => {
items.forEach(item => { items.forEach(item => {
const content = { const content = {
url: `${BASE_URL}${item['url']}`, 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?.['link']) content['url'] = item?.['link']
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.7.9", "version": "18.8.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.7.9", "version": "18.8.9",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.7.9", "version": "18.8.9",
"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": {