camelCaseToKebabCase
Convert a String for a name that is using TitleCamelCase into kebab-case.
For example, "ExampleText" to "example-text"
Note that there's special handling for acronyms, so "ExampleABC" will be converted to "example-abc", and "ABCExample" will be converted to "abc-example" (not "example-a-b-c" and "a-b-c-example").