Reference notes
How case conversion works
Case conversion transforms text into a target style such as uppercase, title case, camel case, snake case, or kebab case.
Useful behavior should explain how words are detected and how punctuation, whitespace, and acronyms are handled.
Case converter examples
The phrase Valido Hub tools can become valido-hub-tools, validoHubTools, or VALIDO HUB TOOLS.
Examples should show how mixed whitespace and punctuation are normalized.
Case converter FAQ
Case conversion is not always reversible. Converting to lowercase can lose acronym or proper-noun information.
Locale-specific case rules may matter for some languages and should be documented when supported.
Case converter references
Reference material should cover common naming conventions such as camel case, snake case, kebab case, title case, and sentence case.
Future notes can describe Unicode and locale-aware case mapping.
Case converter developer examples
Developer examples should show converting labels into variable names, filenames, and URL-safe identifiers.
Examples should call out when generated names need collision checks.