> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Title Case

> Turn words and identifiers into start-cased text.

The **Title Case** action converts text to start case. It separates common word
boundaries—including spaces, punctuation, camel case, and underscores—then
capitalizes each resulting word.

## Inputs

| Input    | Type   | Required | Description          |
| -------- | ------ | -------- | -------------------- |
| **Text** | String | Yes      | The text to convert. |

## Outputs

| Output   | Type   | Description                           |
| -------- | ------ | ------------------------------------- |
| **text** | String | The start-cased version of the input. |

## Examples

| Input            | Output            |
| ---------------- | ----------------- |
| `customer_name`  | `Customer Name`   |
| `billingAddress` | `Billing Address` |
| `MONTHLY-report` | `MONTHLY Report`  |

<Note>
  This is identifier-friendly start casing, not a grammar-aware publishing
  style. It does not apply rules for articles, prepositions, or brand names.
</Note>
