# Title

Returns a trimmed string with the first letter of each word capitalized, ignoring articles, coordinating conjunctions, and short propositions: `a`, `an`, `the`, `at`, `by`, `for`, `in`, `of`, `on`, `to`, `up`, `and`, `as`, `but`, `or`, and `nor`.

```yaml
string: It was one of the best adventures of my life
```

::tabs

::tab antlers
```antlers
{{ string | title }}
```
::tab blade
```blade
{{ Statamic::modify($string)->title() }}
```
::

```html
It Was One of the Best Adventures of My Life
```
