chore: normalize to lowercase

This commit is contained in:
Cory Dransfeldt 2023-09-08 20:39:09 -07:00
parent 02ec6438d1
commit b62f1f3bbe
No known key found for this signature in database

View file

@ -86,7 +86,7 @@ module.exports = function (eleventyConfig) {
if (item.data.collections.posts) { if (item.data.collections.posts) {
item.data.collections.posts.forEach((post) => { item.data.collections.posts.forEach((post) => {
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}` const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag]))] const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
.join(' ') .join(' ')
.trim() .trim()
if (tagString) tags[url] = tagString if (tagString) tags[url] = tagString
@ -94,7 +94,9 @@ module.exports = function (eleventyConfig) {
} }
if (item.data.links) { if (item.data.links) {
item.data.links.forEach((link) => { item.data.links.forEach((link) => {
const tagString = [...new Set(link.tags.map((tag) => tagAliases[tag]))].join(' ').trim() const tagString = [...new Set(link.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
.join(' ')
.trim()
if (tagString) tags[link.url] = tagString if (tagString) tags[link.url] = tagString
}) })
} }