Slugify / case-convert / template-fill
textConvert input strings to URL slugs, apply case transformations (camel, snake, kebab, etc.), or fill template placeholders with data.
Instructions
FREE. Text transforms. op='slugify' -> URL slug; op is one of camel|pascal|snake|kebab|constant|dot|path|title|sentence|upper|lower for case conversion; op='template' fills {{placeholders}} from data. Args: op, text (for slugify/case), or template + data (for template).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| op | Yes | slugify | template | camel | pascal | snake | kebab | constant | dot | path | title | sentence | upper | lower | |
| data | No | Object of values for op='template'. | |
| text | No | Input text for slugify/case ops. | |
| strict | No | template: throw on missing keys. | |
| template | No | Template string for op='template', with {{key}} placeholders. | |
| separator | No | Slug separator (default '-'). |