tessl install tessl/pypi-titlecase@2.4.0Python port of John Gruber's titlecase.pl for intelligent title case conversion with style guide compliance
Agent Success
Agent success rate when using this tile
79%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.92x
Baseline
Agent success rate without this tile
86%
Build a text processing utility that properly formats hyphenated compound phrases for publication headers and titles. The utility should handle various hyphenated constructions while maintaining grammatical correctness.
The system should process hyphenated phrases according to these rules:
The utility should transform text as follows:
Input: "state-of-the-art technology"
Output: "State-of-the-Art Technology"
Input: "one-on-one meeting"
Output: "One-on-One Meeting"
Input: "mother-in-law's advice"
Output: "Mother-in-Law's Advice"
Input: "end-to-end solution"
Output: "End-to-End Solution"
@generates
Implement a function that processes text containing hyphenated phrases and returns the properly formatted result.
Provides text formatting and title casing functionality following style guide rules.