From 90086bac22f5e3b63e57e05a6cb9714a51a8efb4 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 17 Jul 2023 19:23:51 -0700 Subject: [PATCH] chore: expand title case exceptions --- src/_data/music.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/_data/music.js b/src/_data/music.js index b58d1807..1f16c5a3 100644 --- a/src/_data/music.js +++ b/src/_data/music.js @@ -13,7 +13,22 @@ const sanitizeAlbum = (album) => { } const titleCase = (string) => { - const exceptions = ['of', 'the', 'and'] + const exceptions = [ + 'of', + 'the', + 'and', + 'but', + 'for', + 'if', + 'nor', + 'or', + 'so', + 'yet', + 'a', + 'an', + 'is', + 'it', + ] if (!string) return '' return string .toLowerCase()