fix: tag formatting
This commit is contained in:
parent
2f3b6b1f57
commit
5d9b2efd32
2 changed files with 8 additions and 5 deletions
|
@ -187,10 +187,13 @@ export default {
|
|||
return tags.filter((tag) => tag.toLowerCase() !== 'posts')
|
||||
},
|
||||
formatTag: (string) => {
|
||||
const capitalizeFirstLetter = (string) => {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
}
|
||||
if (string === 'iOS' || string === 'macOS' || string === 'RSS') return `#${string}`
|
||||
const capitalizeFirstLetter = (string) => string.charAt(0).toUpperCase() + string.slice(1)
|
||||
const normalizedString = string.toLowerCase()
|
||||
if (
|
||||
normalizedString === 'ios' ||
|
||||
normalizedString === 'macos' ||
|
||||
normalizedString === 'rss'
|
||||
) return `#${string}`
|
||||
if (!string.includes(' ')) return `#${capitalizeFirstLetter(string)}`
|
||||
return `#${string.split(' ').map(s => capitalizeFirstLetter(s)).join('')}`
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "7.10.5",
|
||||
"version": "7.10.6",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue