A CLI utility, Rust crate, and Lua module to cast strings to title-case according to locale specific style guides including Turkish support.
This project was born out of frustration with ALL CAPS TITLES in Markdown that no tooling seemed to properly support casting to title-casing strings, particularly coming from Turkish. Many tools can handle casing single words, and many others can handle English strings, but nothing seemed to be out there for full Turkish strings.
Currently defaults to title-casing, others to come later. Currently defaults to English rules, but the Turkish ones are actually more complete because that's my main use case.
For English, three style guides are known: Associated Press (AP), Chicago Manual of Style (CMOS), and John Grubber's Daring Fireball (Gruber). The Gruber style is by far the most complete. The CMOS style handles a number of parts of speech has punctuation related issues. The AP style is largely unimplemented. Contributions are welcome for better style guide support or further languages.
console
$ decasify -l tr ILIK SU VE İTEN RÜZGARLAR
Ilık Su ve İten Rüzgarlar
$ echo ILIK SU VE İTEN RÜZGARLAR | decasify -l tr
Ilık Su ve İten Rüzgarlar
$ echo foo BAR AND baz: an alter ego | decasify -l en -s gruber
Foo BAR and Baz: An Alter Ego
Use of the CLI is pretty simple. Input may be either shell arguments or STDIN.
```console $ decasify --help A CLI tool to convert all-caps strings to title-case or other less aggressive tones that supports Turkish input
Usage: decasify [OPTIONS] [INPUT]...
Arguments: [INPUT]... Input string
Options:
-l, --locale