After some further testing I have a suggestion and a question:
1.
word_separators
if you do:
$TitleCase(<Title>," the "," nyc "," : ")
on the title:
test the title: the nyc song
expected:
Test the Title: The NYC Song
result:
Test the Title: the NYC Song
I think 'word_separators' should overrule'lower_case_words'?
2.
lower_case_after_chars
quote: "consists of a list of characters, after which the words become lowercase (e.g., ' for something like "Someone's")"
I don't understand how or when to use this one.
If you do:
$TitleCase(<Title>," the "," nyc "," : ",','," ' ")
on the title:
hey c'mon, let's test someone's title
It will give the same result (Hey C'mon, Let's Test Someone's Title) either with or without that parameter?