mirror of
https://github.com/kemko/liquid.git
synced 2026-01-08 11:15:40 +03:00
494 B
494 B
title
| title |
|---|
| capitalize |
Makes the first character of a string capitalized.
Input
```liquid {% raw %} {{ "title" | capitalize }} {% endraw %} ```Output
```text Title ```capitalize only capitalizes the first character of the string, so later words are not affected:
Input
```liquid {% raw %} {{ "my great title" | capitalize }} {% endraw %} ```Output
```text My great title ```