Which case to use
| Case | Use it for |
|---|---|
| Title Case | Headings and titles, in most style guides |
| Sentence case | Normal prose, and headings in APA and many house styles |
| UPPERCASE | Short labels only. Long passages are measurably harder to read. |
| camelCase | Variable names in JavaScript, Java, and similar |
| snake_case | Variable names in Python, and database columns |
| kebab-case | URLs, CSS class names, and file names |
Sentence case cannot know your proper nouns. It capitalises the first word after each full stop and lowercases the rest, so names, places, and the word "I" need a check afterwards.
