A quick guide to text formatting
Consistent casing matters for code readability, editorial publishing, and database design. The right format helps systems parse text correctly and helps readers take it in easily.
Editorial formats
Use Sentence case for everyday writing and emails. Use Title Case for article headers and titles, following AP or Chicago style capitalization rules.
Programming standards
camelCase governs variables, PascalCase names classes, snake_case structures databases, and kebab-case slugifies URLs. Getting these wrong causes real bugs.