feat: bring back syndicated hashtags
This commit is contained in:
parent
a18d0049ba
commit
079f049586
3 changed files with 24 additions and 4 deletions
|
@ -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
4
package-lock.json
generated
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Reference in a new issue