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()